Visualization¶

Nov 10th / Yuqi

delays.tbss (TBS) delays.mcss (MCS) delays.segments (number of segmentations)

ideal causal relationship: TBS --> number of segements <-- MCS

csv_file panda_frame

1 Import¶

In [1]:
from plot_helpers import *
from data_helpers import *
from decomp import *

import os, sys, gzip, json
from pathlib import Path
from sortedcontainers import SortedList, SortedDict
from loguru import logger
import pandas as pd
import sqlite3
import pandas as pd
import matplotlib.pyplot as plt
import matplotlib.patches as patches
import numpy as np
from IPython.display import JSON
import ijson
import seaborn as sns
import pandas as pd

%load_ext autoreload
%autoreload 2

sns.set_theme(style='darkgrid')  # Options include 'darkgrid', 'whitegrid', 'dark', 'white', and 'ticks'
sns.set()
In [2]:
# Remove default handler
logger.remove()
# Add a new handler with level WARNING
logger.add(sys.stdout, level="ERROR")
Out[2]:
2

2 Initalize paths¶

In [3]:
DATASETS_DIR = "./data/"
PLOTS_DIR = "./plots/"
JSON_PATH = "jsons/"
IF_SHOW_USAGE = True

3 class Meas for visualizing single dataset¶

This block aims to construct a clear and consice way of visualization by code encapsulation.

In [4]:
SKIP_FIRST = 1000
SKIP_LAST = 100
class Meas: 
    class Data:
        def __init__(self, datasets_dir,meas_label):
            """
            Meas.Data: Store the data from one measurement
            """
            self.meas_label = meas_label
            self.data_path = datasets_dir + meas_label
            jsons_path = os.path.join(self.data_path, JSON_PATH)
            self.packets = read_json(os.path.join(jsons_path, "packets.json"))
            self.sr_tx_arr = read_json(os.path.join(jsons_path, "sr_tx.json"))
            self.bsr_tx_arr = read_json(os.path.join(jsons_path, "bsr_tx.json"))
            self.bsrupd_arr = read_json(os.path.join(jsons_path, "bsr_upd.json"))
            self.bsrupd_sorted_dict = SortedDict(
                {bsrupd["timestamp"]: bsrupd for bsrupd in self.bsrupd_arr}
            )
            self.sr_bsr_tx_sorted_list = SortedList(
                [sr_tx["timestamp"] for sr_tx in self.sr_tx_arr]
                + [bsr_tx["timestamp"] for bsr_tx in self.bsr_tx_arr]
            )
            self.sched_arr = read_json(os.path.join(jsons_path, "sched.json"))
            self.sched_decid_sorted_dict = SortedDict(
                {sched["decision_ts"]: sched for sched in self.sched_arr}
            )
            self.sched_sched_sorted_dict = SortedDict(
                {sched["schedule_ts"]: sched for sched in self.sched_arr}
            )
            self.packets_rnti_set = set(  # Radio Network Temporary Identifiers
                [
                    item["rlc.attempts"][0]["rnti"]
                    for item in self.packets
                    if item["rlc.attempts"][0]["rnti"] != None
                ]
            )
            print(f"RNTIs in packets of {self.meas_label}: {list(self.packets_rnti_set)}")
            self.mcs_arr_all = read_json(os.path.join(jsons_path, "mcs.json"))
            self.tb_arr = read_json(os.path.join(jsons_path, "tb.json"))
            self.set_rnti = set([item["rnti"] for item in self.mcs_arr_all])
            # filter entries with rnti list(packets_rnti_set)[0]
            if list(self.packets_rnti_set)[0] != None:
                self.mcs_arr = [
                    mcs
                    for mcs in self.mcs_arr_all
                    if mcs["rnti"] == list(self.packets_rnti_set)[0]
                ]
            else:
                self.mcs_arr = self.mcs_arr_all
            self.mcs_sorted_dict = SortedDict(
                {mcs["timestamp"]: mcs for mcs in self.mcs_arr}
            )

    class Delays:
        def __init__(self, data):
            """
            Meas.Delays: Calculate and store delay components, utilizing decomp.py
            """

            self.tbss = []
            last_valid_tbs = None  # Initialize last_valid_tbs outside the loop

            for packet in data.packets:
                tbs = get_tbs(
                    packet,
                    data.sched_decid_sorted_dict,
                    data.sched_sched_sorted_dict,
                    slots_duration_ms=0.5,
                )
                tx_delay = get_tx_delay(packet)
                if tbs is not None and tx_delay is not None:
                    last_valid_tbs = tbs
                    tbs_val = last_valid_tbs
                elif tx_delay is not None:
                    tbs_val = last_valid_tbs
                else:
                    tbs_val = None

                self.tbss.append(tbs_val)

                if tbs_val == None and get_segments(packet) != None and get_tx_delay(packet) !=None:
                    print(f"For packet with {packet["id"]} in {data.meas_label}, tbs is None but segments is not None, Remove this packet!")
                    the_id = packet["id"]
                    data.packets = [
                        packet for packet in data.packets if packet.get("id") != the_id
                    ]

            self.tbss = np.array(
                [
                    item
                    for item in self.tbss
                    if item != None
                ]
            )

            self.idt = np.array(
                list(
                    {
                        data.packets[ind]["id"]: data.packets[ind]["ip.in_t"]
                        - data.packets[ind - 1]["ip.in_t"]
                        for ind in range(1, len(data.packets))
                        if data.packets[ind]["ip.in_t"] != None
                        and data.packets[ind - 1]["ip.in_t"] != None
                    }.values()
                )
            )

            self.frame_alignment_delays = np.array(
                list(
                    {
                        packet["id"]: get_frame_alignment_delay(
                            packet,
                            data.sr_bsr_tx_sorted_list,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_frame_alignment_delay(
                            packet,
                            data.sr_bsr_tx_sorted_list,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                        and get_tx_delay(packet) != None
                    }.values()
                )
            )
            self.scheduling_delays = np.array(
                list(
                    {
                        packet["id"]: get_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                        and get_tx_delay(packet) != None
                    }.values()
                )
            )
            self.ran_delays = np.array(
                list(
                    {
                        packet["id"]: get_ran_delay(packet)
                        for packet in data.packets
                        if get_ran_delay(packet) != None
                    }.values()
                )
            )
            self.ran_delays_wo_frame_alignment_delay = np.array(
                list(
                    {
                        packet["id"]: get_ran_delay_wo_frame_alignment_delay(
                            packet,
                            data.sr_bsr_tx_sorted_list,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_ran_delay_wo_frame_alignment_delay(
                            packet,
                            data.sr_bsr_tx_sorted_list,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                    }.values()
                )
            )
            self.ran_delays_wo_scheduling_delay = np.array(
                list(
                    {
                        packet["id"]: get_ran_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_ran_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                    }.values()
                )
            )
            self.queueing_delays = np.array(
                list(
                    {
                        packet["id"]: get_queueing_delay(packet)
                        for packet in data.packets
                        if get_queueing_delay(packet) != None and get_tx_delay(packet) !=None
                    }.values()
                )
            )
            self.queueing_delays_wo_scheduling_delay = np.array(
                list(
                    {
                        packet["id"]: get_queueing_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_queueing_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                        and get_tx_delay(packet) != None
                    }.values()
                )
            )
            self.segmentation_delay = np.array(
                list(
                    {
                        packet["id"]: get_segmentation_delay(packet)
                        for packet in data.packets
                        if get_segmentation_delay(packet) != None
                    }.values()
                )
            )
            self.segmentation_delays_wo_scheduling_delay = np.array(
                list(
                    {
                        packet["id"]: get_segmentation_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_segmentation_delay_wo_scheduling_delay(
                            packet,
                            data.sched_decid_sorted_dict,
                            data.sched_sched_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None
                    }.values()
                )
            )

            # This is commented, because frame_alignment_delay is part of the scheduling_delay!
            # self.segmentation_delays_wo_scheduling_framealignment_delay = self.segmentation_delays_wo_scheduling_delay - self.frame_alignment_delays

            self.segments = np.array(
                list(
                    {
                        packet["id"]: get_segments(packet)
                        for packet in data.packets
                        if get_segments(packet) != None and get_tx_delay(packet) !=None
                    }.values()
                )
            )
            self.retx_delays = np.array(
                list(
                    {
                        packet["id"]: get_retx_delay(packet)
                        for packet in data.packets
                        if get_retx_delay(packet) != None 
                    }.values()
                )
            )
            self.mcss=np.array(
                list(
                    {
                        packet["id"]: get_mcs(
                            packet,
                            data.mcs_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        for packet in data.packets
                        if get_mcs(
                            packet,
                            data.mcs_sorted_dict,
                            slots_per_frame=20,
                            slots_duration_ms=0.5,
                        )
                        != None and get_tx_delay(packet) != None
                    }.values()
                )
            )
            # self.tbss = np.array(
            #     list(
            #         {
            #             packet["id"]: get_tbs(
            #                 packet, data.sched_sorted_dict, slots_duration_ms=0.5
            #             )
            #             for packet in data.packets
            #             if get_tbs(
            #                 packet, data.sched_sorted_dict, slots_duration_ms=0.5
            #             )
            #             != None
            #         }.values()
            #     )
            # )

            # Here, if "tbs" not exist, we assume the the tbs for this packet remains unchanged
            # last_valid_tbs = None  # Initialize to keep track of the last valid TBS value
            # self.tbss = np.array(
            #     [
            #         # Iterate over each packet to fetch TBS or use last valid TBS if None
            #         (
            #             (
            #                 last_valid_tbs := get_tbs(
            #                     packet,
            #                     data.sched_decid_sorted_dict,
            #                     data.sched_sched_sorted_dict,
            #                     slots_duration_ms=0.5,
            #                 )
            #             )
            #             if (
            #                 tbs := get_tbs(
            #                     packet,
            #                     data.sched_decid_sorted_dict,
            #                     data.sched_sched_sorted_dict,
            #                     slots_duration_ms=0.5,
            #                 )
            #             )
            #             is not None and get_tx_delay(packet) != None
            #             else last_valid_tbs
            #                  if get_tx_delay(packet) != None
            #                  else None
            #         )
            #         for packet in data.packets
            #     ]
            # )

            self.packet_size = np.array(
                list(
                    {
                        packet["id"]: get_packet_size(packet)
                        for packet in data.packets
                        if get_packet_size(packet) != None
                        and get_tx_delay(packet) != None
                    }.values()
                )
            )
            self.timestamps = np.array(
                list(
                    {
                        packet["id"]: packet["ip.in_t"]
                        for packet in data.packets
                        if packet["ip.in_t"] != None and get_tx_delay(packet) != None
                    }
                )
            )

    def __init__(self, datasets_dir=DATASETS_DIR, meas_label="s49"):
        """
        Meas: 
            a class which store and analyze 1 group(1 folder) of measurement. The init function utilizes data_helps.py
        Parameters:
            datasets_dir(str): Path of all datasets;
            meas_label(str): The measurement label;
        """
        self.meas_label=meas_label
        self.data=self.Data(datasets_dir, meas_label)
        self.delays=self.Delays(self.data)
        if not os.path.exists(PLOTS_DIR + self.data.meas_label):
            os.makedirs(PLOTS_DIR + self.data.meas_label)

    def checkData(self, name, pkt_idx=0):
        """
        checkData: check the 1st json object of given attribute name

        Parameters:
            name(str): the attribute name of Meas.Delay\
            pkt_idx(int): the index of checked json object
        """
        attr=getattr(self.data, name, None)
        if attr is not None:
            for idx,attr_item in enumerate(attr):
                if idx <pkt_idx:
                    continue
                elif idx == pkt_idx:
                    print(json.dumps(attr_item, indent=4, allow_nan=True))
                else:
                    break
        else:
            print(f"No attribute {name} found in Meas_{self.data.meas_label}.data")

    def listDataAttr(self):
        return list(vars(self.data).keys()) # ['attr1', 'attr2']

    def listDelaysAttr(self):
        return list(vars(self.delays).keys())

    def plotCCDF(self, curve_name,skip_first=SKIP_FIRST, skip_last=SKIP_LAST, figsize=(8,5), plt_show=True, ax_external=None, outlier=35, x_lim=30):
        """
        Meas.plotCCDF:
            plot 1 ccdf among 13 kinds of delay measurement

        Parameters:
            curve_name(str):the delay measurement you want to plot
            skip_first(int): skip first a few packets
            skip_last(int):  skip last a few packets
            figsize(tuple):  figsize
            plt_show(bool):  if or not show and save figure.
            ax_external(object): external plot object
        """
        curve=getattr(self.delays, curve_name, None)
        if curve is not None:
            if curve_name == "packet_size":
                outlier = None
                x_lim=512
            plot_ccdf(curve[skip_first:-skip_last], f"{self.data.meas_label}_{curve_name}", figsize=figsize, ax=ax_external, outlier=outlier, x_lim = x_lim)
            if plt_show:
                plt.tight_layout()
                plt.savefig(f"{PLOTS_DIR}{self.data.meas_label}/{curve_name}_ccdf_plot.png", dpi=300, bbox_inches='tight')
                plt.show()
        else:
            print(f"No attribute {curve_name} found in meas.delays of {self.data.meas_label}.")

    def plotAllCCDF(self, figsize=(24,24),subplot_division=[1,1]):
        """
        Meas.plotAllCCDF:
            plot ccdf for 13 kinds of delay measurement

        Parameters:
            figsize(tuple):  figsize
            subplot_division(list=[x,y]): x-row y-column subplots. If [1,1], figures will be plotted separately.
        """
        curve_names = self.listDelaysAttr()
        curve_names = [curve_name for curve_name in curve_names if curve_name != 'timestamps']
        figure_num=0
        for i in range(0,len(curve_names)):
            if i % (subplot_division[0]*subplot_division[1]) == 0:
                if i != 0:
                    plt.tight_layout()
                    plt.savefig(f"{PLOTS_DIR}{self.data.meas_label}/all_ccdf_plots_{figure_num}.png", dpi=300)
                    figure_num=figure_num+1
                    plt.show()
                _, axs = plt.subplots(subplot_division[0], subplot_division[1], figsize=figsize)

            if subplot_division[0]*subplot_division[1]==1:
                self.plotCCDF(curve_names[i], plt_show=False, ax_external=axs)
            elif subplot_division[0]==1 or subplot_division[1]==1:
                self.plotCCDF(curve_names[i], plt_show=False, ax_external=axs[i % (subplot_division[1]*subplot_division[0])])
            else:
                self.plotCCDF(
                    curve_names[i],
                    plt_show=False,
                    ax_external=axs[
                        (i % (subplot_division[1]*subplot_division[0] ) // subplot_division[1]),
                        i % subplot_division[1],
                    ],
                )
        plt.tight_layout()
        plt.savefig(f"{PLOTS_DIR}{self.data.meas_label}/all_ccdf_plots_{figure_num}.png", dpi=300, bbox_inches="tight")
        plt.show()

    def plotTimeSeries(self, curve_names, curves=None, start_idx=5000, end_idx=6000, figsize=(12,5), marker="*", title="timeseries",plt_show=True, ax_external=None):
        if ax_external is not None:
            ax = ax_external
        else:
            _, ax = plt.subplots(figsize=figsize)
        index_range = slice(start_idx, end_idx)
        for idx,curve_name in enumerate(curve_names):
            if curves is not None:
                ax.plot(curves[idx][index_range], marker=marker, label=f"{self.data.meas_label}: {curve_name}")
            else:
                curve = getattr(self.delays, curve_name, None)
                if curve is not None:
                    ax.plot(curve[index_range], marker=marker, label=f"{self.data.meas_label}: {curve_name}")
                else:
                    print(
                        f"Curve {curve_name} not found in meas.delays of {self.data.meas_label}."
                    )
        ax.set_xlabel("Index")
        ax.set_ylabel("Delay [ms]")
        ax.grid(True,"minor")
        ax.legend()
        if plt_show == True:
            i = 1
            while os.path.exists(os.path.join(PLOTS_DIR, self.data.meas_label, f"{title}_{i}.png")):
                i += 1
            plt.tight_layout()
            plt.savefig(
                f"{PLOTS_DIR}{self.data.meas_label}/{title}_{i}.png", dpi=300, bbox_inches="tight"
            )
            plt.show()

    def dataFrame(self, curve_names, curve_labels=None, csv_path=None, if_save=True):
        """
        Export dataframe of given delay components with given labels, and save it to csv file.

        curve_labels(list of str): data labels
        curve_names(list of str): attributes names of Meas.Delay (use Meas.listDelaysAttr() to check)
        csv_path(str): Optional. default: the data folder of the meas.
        """
        data=dict()
        for idx, curve_name in enumerate(curve_names):
            curve = getattr(self.delays, curve_name, None)
            if curve is not None:
                if curve_labels is not None:
                    data[curve_labels[idx]]=curve
                else:
                    data[curve_names[idx]] = curve

        # Create a pandas DataFrame with each array as a column
        df = pd.DataFrame(
            data
        )
        # Display the first few rows of the DataFrame
        print(df.head())

        # Export the DataFrame to a CSV file
        if csv_path == None:
            csv_path=f"{DATASETS_DIR}{self.data.meas_label}"
            print(csv_path)

        if if_save ==True:
            df.to_csv(os.path.join(csv_path, f"{"_".join(curve_labels)}.csv"), index=True)
            print(f"Dataframe saved to {os.path.join(csv_path, f"{"_".join(curve_labels)}.csv")}")

        return df

    def plotCrossCorrelation(self,  curve_names, curve_labels= None):
        """
        Calculates and returns the Pearson correlation coefficient between two vectors.

        curve_names(list of str): attributes names of Meas.Delay (use Meas.listDelaysAttr() to check)
        curve_labels(list of str): Optional,data labels
        """
        df = self.dataFrame(curve_names, curve_labels=curve_labels, if_save=False)

        fig = plt.figure()
        ax = fig.add_subplot(111)
        correlation_matrix = df.corr()
        sns.heatmap(df.corr(), ax=ax, annot=True)
        plt.show()

        return correlation_matrix

    def plotAutoCorrelation(self, curve_name, label=None, figsize=(8,5), plt_show=True, ax_external=None, outlier = 35):
        """
        Meas.plotCCDF:
            plot 1 autocorr among all kinds of delay measurement

        Parameters:
            curve_name(str):the delay measurement you want to plot
            figsize(tuple):  figsize
            plt_show(bool):  if or not show and save figure.
            ax_external(object): external plot object
        """
        curve=getattr(self.delays, curve_name, None)
        if label is None:
            label = f"{self.data.meas_label}_{curve_name}"
        if curve is not None:
            plot_autocorr(
                curve, label, figsize=figsize, ax=ax_external, outlier=outlier
            )
            if plt_show:
                plt.tight_layout()
                plt.savefig(f"{PLOTS_DIR}{self.data.meas_label}/{curve_name}_autocorr_plot.png", dpi=300, bbox_inches='tight')
                plt.show()
        else:
            print(f"No attribute {curve_name} found in meas.delays of {self.data.meas_label}.")

    def plotAllAutoCorrelation(self, delays=None, labels = None, figsize=(24,24), subplot_division=[1,1], outlier=35, x_lim=100 ):
        if delays == None:
            curve_names = self.listDelaysAttr()
        else:
            curve_names = delays
        if labels == None:
            labels = curve_names
        figure_num = 0
        for i in range(0, len(curve_names)):
            if i % (subplot_division[0] * subplot_division[1]) == 0:
                if i != 0:
                    plt.tight_layout()
                    plt.savefig(
                        f"{PLOTS_DIR}{self.data.meas_label}/AutoCorrelation_{figure_num}.png",
                        dpi=300,
                    )
                    figure_num = figure_num + 1
                    plt.show()
                _, axs = plt.subplots(
                    subplot_division[0], subplot_division[1], figsize=figsize
                )

            if subplot_division[0] * subplot_division[1] == 1:
                self.plotAutoCorrelation(curve_names[i], label=labels[i],plt_show=False, ax_external=axs, outlier=outlier)
            elif subplot_division[0] == 1 or subplot_division[1] == 1:
                self.plotAutoCorrelation(
                    curve_names[i],
                    label=labels[i],
                    plt_show=False,
                    ax_external=axs[i % (subplot_division[1] * subplot_division[0])],
                    outlier=outlier,
                )
            else:
                self.plotAutoCorrelation(
                    curve_names[i],
                    label=labels[i],
                    plt_show=False,
                    ax_external=axs[
                        (
                            i
                            % (subplot_division[1] * subplot_division[0])
                            // subplot_division[1]
                        ),
                        i % subplot_division[1],
                    ],
                    outlier=outlier,
                )
        plt.tight_layout()
        plt.savefig(
            f"{PLOTS_DIR}{self.data.meas_label}/AutoCorrelation_{figure_num}.png",
            dpi=300,
            bbox_inches="tight",
        )
        plt.show()

    def crosscorr(self, datax, datay, lag=0, wrap=False):
        """Lag-N cross correlation with time-lagging capability.
        
        Parameters
        ----------
        datax, datay : pandas.Series
            The time series data to compute the cross-correlation.
        lag : int, default 0
            The lag (positive or negative) for the cross-correlation.
        wrap : bool, default False
            If True, wraps the lagged values (useful for cyclic data).
            
        Returns
        ----------
        crosscorr : float
            The Pearson correlation coefficient for the given lag.
        """
        if wrap:
            shiftedy = datay.copy()  # Create a copy to modify
            if lag > 0:
                # Wrap last `lag` values to the beginning
                shiftedy.iloc[:lag] = datay.iloc[-lag:].values
            elif lag < 0:
                # Wrap first `-lag` values to the end
                shiftedy.iloc[lag:] = datay.iloc[:lag + len(datay)].values
            # Compute correlation
            return datax.corr(shiftedy)
        else:
            # Standard shift with NaN filling
            return datax.corr(datay.shift(lag))

    def plotTLCC(self, curve_names, curve_labels=None, wrap = False):
        data = dict()
        if curve_labels is None:
            curve_labels = curve_names
        for idx, curve_name in enumerate(curve_names):
            curve = getattr(self.delays, curve_name, None)
            if curve is not None:
                data[curve_labels[idx]] = curve
            else:
                print(f"{curve_name} not found")
                return 

        # Create a pandas DataFrame with each array as a column
        df = pd.DataFrame(data)
        d1 = df[curve_labels[0]]
        d2 = df[curve_labels[1]]

        max_lag = 50  
        lags = range(-max_lag, max_lag + 1)

        rs = [self.crosscorr(d1, d2, lag, wrap=wrap) for lag in lags]

        peak_lag = lags[np.argmax(np.abs(rs))]
        d2_offset = -peak_lag

        f, ax = plt.subplots(figsize=(14, 3))
        ax.plot(lags, rs, label="Cross-correlation")
        ax.axvline(0, color='k', linestyle='--', label='Center (Lag=0)')
        ax.axvline(peak_lag, color='r', linestyle='--', label='Peak Synchrony')
        ax.set(
            title=(
                f"{curve_labels[0]}[i-{d2_offset}] ~ {curve_labels[1]}[i]"
                if d2_offset > 0
                else (
                    f"{curve_labels[0]}[i] ~ {curve_labels[1]}[i{d2_offset}]"
                    if d2_offset < 0
                    else f"{curve_labels[0]}[i] ~ {curve_labels[1]}[i]"
                )
            ),
            ylim=[-1, 1],
            xlabel="Lag (packets)",
            ylabel="Pearson r",
        )
        ax.legend()
        plt.show()
        return 

3.1 Usage of class Meas¶

3.1.1 Import dataset¶

In [5]:
if IF_SHOW_USAGE == True:
    Meas_s54=Meas(meas_label='s54')
RNTIs in packets of s54: ['b4f7']
2024-12-19 15:54:18.546 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.547 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.633 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.634 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.714 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.721 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.745 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.869 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.870 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.948 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.949 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.991 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:18.992 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.032 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.042 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.062 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.082 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.115 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.116 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.117 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.130 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.131 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.195 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.197 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.204 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.213 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.221 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.228 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.237 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.255 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.263 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.270 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.271 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.294 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.298 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.305 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.309 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.360 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.361 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.370 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.376 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.377 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.397 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.398 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.437 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.442 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.444 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.468 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.584 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.585 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.674 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.674 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.778 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.792 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.821 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.955 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:19.956 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.040 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.042 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.098 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.099 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.136 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.144 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.158 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.170 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.194 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.195 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.196 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.206 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.208 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.255 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.256 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.262 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.269 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.275 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.281 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.287 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.311 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.329 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.337 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.339 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.377 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.387 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.392 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.402 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.493 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.494 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.509 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.557 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.559 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.583 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.584 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.627 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.636 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.638 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.659 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.751 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.752 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.884 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:20.886 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.038 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.045 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.067 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.205 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.206 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.312 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.315 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.363 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.364 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.408 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.415 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.429 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.439 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.465 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.465 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.466 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.473 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.474 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.517 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.518 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.526 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.531 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.538 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.545 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.551 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.565 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.573 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.581 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.582 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.609 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.615 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.621 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.632 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.716 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.717 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.739 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.753 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.755 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.788 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.790 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.842 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.850 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.851 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:21.877 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.564 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.564 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.635 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.637 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.720 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.724 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.738 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.828 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.829 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.895 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.896 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.925 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.926 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.947 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.955 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.963 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.967 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.980 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.981 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.983 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.988 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:24.990 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.023 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.025 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.030 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.033 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.037 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.041 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.050 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.061 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.070 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.073 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.075 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.094 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.100 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.104 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.109 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.170 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.171 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.181 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.193 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.194 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.210 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.211 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.231 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.235 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.235 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.247 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.360 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.361 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.516 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.517 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.644 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.657 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.696 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.947 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:25.949 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.096 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.096 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.198 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.200 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.268 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.289 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.305 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.318 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.341 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.343 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.344 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.351 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.353 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.416 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.417 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.425 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.432 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.441 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.449 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.457 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.496 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.512 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.528 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.530 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.560 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.564 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.573 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.579 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.710 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.711 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.736 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.762 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.765 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.801 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.802 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.904 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.918 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.919 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:26.951 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.099 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.100 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.101 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.101 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.244 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.245 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.246 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.247 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.405 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.408 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.426 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.429 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.465 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.466 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.748 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.751 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.753 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:27.755 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.012 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.014 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.015 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.019 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.119 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.120 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.120 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.123 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.200 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.203 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.219 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.220 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.248 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.250 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.269 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.271 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.323 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.324 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.325 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.327 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.329 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.332 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.351 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.353 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.356 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.358 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.472 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.474 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.477 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.479 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.499 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.503 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.513 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.514 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.527 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.528 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.584 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.586 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.604 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.605 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.639 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.642 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.665 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.666 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.675 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.676 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.676 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.677 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.719 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.721 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.730 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.731 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.741 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.743 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.751 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.753 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.861 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.862 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.862 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.863 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.882 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.883 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.897 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.898 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.900 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.901 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.957 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.959 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.960 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:28.962 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.083 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.085 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.096 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.098 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.100 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.104 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.156 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.157 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.387 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.390 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.391 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.392 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.641 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.643 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.643 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.645 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.872 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.874 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.892 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.893 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.948 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:29.949 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.240 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.242 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.243 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.244 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.536 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.538 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.540 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.543 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.689 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.690 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.692 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.694 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.827 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.829 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.865 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.868 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.905 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.907 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.947 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:30.950 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.045 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.046 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.048 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.049 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.052 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.053 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.101 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.103 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.106 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.107 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.250 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.251 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.253 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.257 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.279 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.280 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.298 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.299 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.314 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.315 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.330 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.331 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.343 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.344 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.374 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.376 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.404 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.406 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.421 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.422 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.424 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.426 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.490 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.491 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.510 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.513 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.526 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.529 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.543 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.545 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.731 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.732 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.733 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.734 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.774 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.776 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.803 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.805 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.805 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.808 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.915 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.916 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.918 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:31.922 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.089 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.090 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.107 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.108 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.109 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.110 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.178 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.179 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.315 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.319 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.395 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.395 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.452 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.458 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.471 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.574 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.576 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.652 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.653 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.683 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.685 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.706 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.712 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.722 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.728 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.742 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.743 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.744 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.751 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.752 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.781 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.782 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.790 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.793 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.796 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.802 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.806 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.814 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.820 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.823 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.824 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.839 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.843 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.846 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.851 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.887 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.889 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.898 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.909 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.910 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.926 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.926 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.948 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.951 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.953 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:32.963 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.239 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.240 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.342 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.343 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.454 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.462 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.506 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.650 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.652 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.778 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.780 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.834 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.835 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.883 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.890 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.899 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.906 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.941 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.942 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.944 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.948 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:34.952 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.021 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.023 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.037 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.045 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.053 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.057 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.063 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.082 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.090 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.096 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.099 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.135 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.142 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.149 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.156 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.239 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.240 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.257 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.269 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.271 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.302 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.304 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.355 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.362 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.363 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.386 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.441 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.442 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.485 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.485 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.518 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.526 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.542 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.608 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.609 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.675 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.677 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.695 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.696 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.716 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.719 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.727 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.729 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.752 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.753 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.757 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.764 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.765 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.813 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.818 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.825 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.830 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.836 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.844 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.848 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.859 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.869 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.874 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.876 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.894 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.900 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.906 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.913 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.973 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.975 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.983 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.992 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:35.992 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.007 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.007 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.034 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.038 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.040 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.051 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.098 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.100 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.148 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.148 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.179 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.181 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.192 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.232 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.234 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.277 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.277 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.299 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.300 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.325 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.332 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.340 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.345 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.358 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.358 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.359 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.362 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.363 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.382 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.383 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.386 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.389 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.393 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.398 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.402 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.410 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.414 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.419 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.420 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.430 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.432 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.439 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.443 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.472 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.474 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.483 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.486 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.490 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.500 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.502 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.546 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.557 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.559 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:54:36.578 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present

Some test¶

In [6]:
#Meas_s49.data.sched_sorted_dict[Meas_s49.data.sched_sorted_dict.keys()[1123]]["cause"]["tbs"]
# Meas_s49.checkData("mcs_sorted_dict")
# Meas_s49.checkData("packets")
In [7]:
if IF_SHOW_USAGE== True:
    print(list(vars(Meas_s54.delays).keys()))  # ['attr1', 'attr2']

    for attr_name in list(vars(Meas_s54.delays).keys()):
        attr = getattr(Meas_s54.delays, attr_name, None)
        if attr is not None:
            print(
                f"len(Meas_{Meas_s54.data.meas_label}.delays.{attr_name})= {len(attr)} "
            )
['tbss', 'idt', 'frame_alignment_delays', 'scheduling_delays', 'ran_delays', 'ran_delays_wo_frame_alignment_delay', 'ran_delays_wo_scheduling_delay', 'queueing_delays', 'queueing_delays_wo_scheduling_delay', 'segmentation_delay', 'segmentation_delays_wo_scheduling_delay', 'segments', 'retx_delays', 'mcss', 'packet_size', 'timestamps']
len(Meas_s54.delays.tbss)= 39999 
len(Meas_s54.delays.idt)= 39998 
len(Meas_s54.delays.frame_alignment_delays)= 39999 
len(Meas_s54.delays.scheduling_delays)= 39999 
len(Meas_s54.delays.ran_delays)= 39999 
len(Meas_s54.delays.ran_delays_wo_frame_alignment_delay)= 39999 
len(Meas_s54.delays.ran_delays_wo_scheduling_delay)= 39999 
len(Meas_s54.delays.queueing_delays)= 39999 
len(Meas_s54.delays.queueing_delays_wo_scheduling_delay)= 39999 
len(Meas_s54.delays.segmentation_delay)= 39999 
len(Meas_s54.delays.segmentation_delays_wo_scheduling_delay)= 39998 
len(Meas_s54.delays.segments)= 39999 
len(Meas_s54.delays.retx_delays)= 39999 
len(Meas_s54.delays.mcss)= 39999 
len(Meas_s54.delays.packet_size)= 39999 
len(Meas_s54.delays.timestamps)= 39999 
In [8]:
if IF_SHOW_USAGE == True:
    print(type(Meas_s54.delays.tbss))
    print(Meas_s54.delays.tbss.shape)
<class 'numpy.ndarray'>
(39999,)

3.1.2 checkData, listDataAttr, listDelaysAttr¶

checkData: print the [pkt_idx]-th json object in the given Meas.Data attribute name

listDataAttr: print all attributes names in the given Meas.Data

listDelaysAttr : print all attributes names in the given Meas.Delays

Here are all attributes retrieved from json files, stored in [Meas_instance].data

In [9]:
if IF_SHOW_USAGE == True:
    Meas_s54.listDataAttr()
In [10]:
if IF_SHOW_USAGE == True:
    Meas_s54.listDelaysAttr()
In [11]:
if IF_SHOW_USAGE == True:
    Meas_s54.checkData("sched_arr")
{
    "decision_ts": 1730654462.927429,
    "schedule_ts": 1730654462.930429,
    "symbols_start": 10,
    "symbols_num": 3,
    "prbs_start": 0,
    "prbs_num": 5,
    "cause": {
        "rnti": "b4f7",
        "tbs": 24,
        "mcs": 9,
        "rbs": 5,
        "type": 3,
        "diff": 7124.0,
        "buf": NaN,
        "sched": NaN,
        "hqround": NaN,
        "hqpid": NaN
    }
}

3.1.3 plotCCDF plot CCDF of single delay component¶

In [12]:
if IF_SHOW_USAGE == True:
    print(list(vars(Meas_s54.delays).keys()))  # ['attr1', 'attr2']
['tbss', 'idt', 'frame_alignment_delays', 'scheduling_delays', 'ran_delays', 'ran_delays_wo_frame_alignment_delay', 'ran_delays_wo_scheduling_delay', 'queueing_delays', 'queueing_delays_wo_scheduling_delay', 'segmentation_delay', 'segmentation_delays_wo_scheduling_delay', 'segments', 'retx_delays', 'mcss', 'packet_size', 'timestamps']
In [13]:
if IF_SHOW_USAGE == True:
    Meas_s54.plotCCDF("scheduling_delays")
No description has been provided for this image
In [14]:
if IF_SHOW_USAGE == True:
    Meas_s54.plotCCDF("queueing_delays_wo_scheduling_delay")
    Meas_s54.plotCCDF("queueing_delays")
No description has been provided for this image
No description has been provided for this image

3.1.4 plotAllCCDF plot all CCDF curves¶

In [15]:
if IF_SHOW_USAGE == True:
    Meas_s54.plotAllCCDF(subplot_division=[5, 3])

# Meas_s49.plotAllCCDF(subplot_division=[1, 1])

# Meas_s49.plotAllCCDF(subplot_division=[1, 3])

# Meas_s49.plotAllCCDF(subplot_division=[3, 1])
No description has been provided for this image

3.1.5 plotTimeSeries plot data values v.s. index¶

In [16]:
if IF_SHOW_USAGE == True:
    Meas_s54.plotTimeSeries(
        ["frame_alignment_delays", "scheduling_delays", "ran_delays"]
    )
No description has been provided for this image
In [17]:
if IF_SHOW_USAGE == True:
    Meas_s54.plotTimeSeries(
        ["RAN Delay w/o frame-alignment delay", "RAN Delay w/o scheduling delay"],
        curves=[
            Meas_s54.delays.ran_delays - Meas_s54.delays.frame_alignment_delays,
            Meas_s54.delays.ran_delays - Meas_s54.delays.scheduling_delays,
        ],
        marker="o",
    )
No description has been provided for this image

4 class MultiMeas for visualizing multiple datasets¶

In [18]:
class MultiMeas:
    def __init__(self, datasets_dir=DATASETS_DIR, meas_labels=["s39","s40","s49"]):
        """
        MultiMeas:
            save and visualize multiple Meas objects

        Parameters:
            datasets_dir(str): Path of all datasets;
            meas_label(list of str): The measurement label;
        """
        self.meas=[]
        self.meas_labels=meas_labels
        for meas_label in meas_labels:
            self.meas.append(Meas(datasets_dir=datasets_dir, meas_label=meas_label))
        self.folder_label="_".join(meas_labels)
        if not os.path.exists(PLOTS_DIR + self.folder_label):
            os.makedirs(PLOTS_DIR + self.folder_label)

    def plotCCDF(self, curve_names, meas_names, skip_first=SKIP_FIRST, skip_last=SKIP_LAST, figsize=(8,5), plt_show=True, ax_external=None, title='ccdf_plot'):
        """
        MultiMeas.plotCCDF:
            plot 1 ccdf among 13 kinds of delay measurement

        Parameters:
            curve_names(list of str):the delay measurement you want to plot
            meas_names(list of str):
            skip_first(int): skip first a few packets
            skip_last(int):  skip last a few packets
            figsize(tuple):  figsize
            plt_show(bool):  if or not show and save figure
            ax_external(object) ax object
            title(str): title (and filename)
        """
        if ax_external is None:
            _, ax=plt.subplots(figsize=figsize)
        else:
            ax=ax_external
        meas_list=[meas for meas in self.meas if meas.meas_label in meas_names]
        for one_meas in meas_list:
            for curve_name in curve_names:
                one_meas.plotCCDF(curve_name, skip_first=skip_first, skip_last=skip_last,ax_external=ax, plt_show=False)
        if plt_show:
            i = 1
            while os.path.exists(os.path.join(PLOTS_DIR, self.folder_label, f"{title}_{i}.png")):
                i += 1
            ax.set_title(f"{title}_{i}")
            plt.tight_layout()
            plt.savefig(
                f"{PLOTS_DIR}{self.folder_label}/{title}_{i}.png",
                dpi=300,
                bbox_inches="tight",
            )
            plt.show()

    def plotAllPerDelayType(self, figsize=(24,24),subplot_division=[1,1]):
        """
        Multieas.plotAllPerDelayType:
             plot CCDFs from multiple meas files on the same axes
        Parameters:
            figsize(tuple):  figsize
            subplot_division(list=[x,y]): x-row y-column subplots. If [1,1], figures will be plotted separately.
        """
        curve_names = self.meas[0].listDelaysAttr()
        curve_names = [
            curve_name for curve_name in curve_names if curve_name != "timestamps"
        ]
        figure_num=0
        for i in range(0,len(curve_names)):
            if i % (subplot_division[0]*subplot_division[1]) == 0:
                if i != 0:
                    plt.tight_layout()
                    plt.savefig(f"{PLOTS_DIR}{self.folder_label}/all_ccdf_plots_{figure_num}.png", dpi=300)
                    figure_num=figure_num+1
                    plt.show()
                _, axs = plt.subplots(subplot_division[0], subplot_division[1], figsize=figsize)

            if subplot_division[0]*subplot_division[1]==1:
                self.plotCCDF([curve_names[i]],self.meas_labels, plt_show=False, ax_external=axs)
            elif subplot_division[0]==1 or subplot_division[1]==1:
                self.plotCCDF([curve_names[i]],self.meas_labels, plt_show=False, ax_external=axs[i % (subplot_division[1]*subplot_division[0])])
            else:
                self.plotCCDF(
                    [curve_names[i]],
                    self.meas_labels,
                    plt_show=False,
                    ax_external=axs[
                        (
                            i
                            % (subplot_division[1] * subplot_division[0])
                            // subplot_division[1]
                        ),
                        i % subplot_division[1],
                    ],
                )
        plt.tight_layout()
        plt.savefig(f"{PLOTS_DIR}{self.folder_label}/all_ccdf_plots_{figure_num}.png", dpi=300, bbox_inches="tight")
        plt.show()

    def plotHistograms(self, delay_name, ax_external=None, skip_first=SKIP_FIRST, skip_last=SKIP_LAST, y_log=True, outlier=None, figsize=(8,5)):
        """
        Plots histograms for multiple arrays side by side on the same axes with normalized frequency.

        :param delay_name: The delay compoent to plot
        :param ax: Axes object to plot on
        :param skip_first: only take [skip_first:-skip_last] to plot
        :param skip_last:  only take [skip_first:-skip_last] to plot
        :param labels: List of labels for each array
        :param y_log: Boolean to set y-axis to log scale if True
        :param outlier: Cap value for outliers (optional)
        """

        values_per_meas = []
        labels = []
        for one_meas in self.meas:
            one_delay=getattr(one_meas.delays, delay_name, None)
            if one_delay is not None:
                values_per_meas.append(one_delay[skip_first:-skip_last])
                labels.append(one_meas.data.meas_label)
            else:
                print(f"No attribute {delay_name} found in meas.delays of {one_meas.data.meas_label}.")

        if ax_external is not None:
            ax=ax_external
        else:
            _, ax=plt.subplots(figsize=figsize)

        plot_multiple_histograms(values_per_meas=values_per_meas, ax=ax, labels=labels, y_log=y_log, delay_type_label=delay_name, outlier=outlier)
        plt.savefig(f"{PLOTS_DIR}{self.folder_label}/{delay_name}_hist_plot.png", dpi=300, bbox_inches="tight")
        plt.show()

    def plotTimeSeries(self, curve_names, meas_names, start_idx=2500, end_idx=2700, figsize=(12,5), marker="*", title="timeseries"):
        """
        Plot time series of multiple variables of multiple datasets in one plot.

        Parameters:
            curve_names(list of str): attribute names in Meas.Delays
            meas_names(list of str): dataset names
            start_idx(int): start index
            end_idx(int): end index
            figsize((int, int)): figsize
            marker(char): marker style of datapoints
        """
        _, ax = plt.subplots(figsize=figsize)

        meas_list=[meas for meas in self.meas if meas.meas_label in meas_names]
        for one_meas in meas_list:
            one_meas.plotTimeSeries(curve_names, start_idx=start_idx, end_idx=end_idx, figsize=figsize, marker=marker, ax_external=ax, plt_show=False)
        i = 0
        while os.path.exists(os.path.join(PLOTS_DIR, self.folder_label, f"{title}_{i}.png")):
            i += 1
        plt.tight_layout()
        plt.savefig(
            f"{PLOTS_DIR}{self.folder_label}/{title}_{i}.png", dpi=300, bbox_inches="tight"
        )
        plt.show()

    def dataFrame(self, curve_names, curve_labels=None, csv_path=None, if_save=True):
        """
        Export dataframe of given delay components with given labels, and save it to csv file.

        curve_labels(list of str): data labels
        curve_names(list of str): attributes names of Meas.Delay (use Meas.listDelaysAttr() to check)
        csv_path(str): Optional. default: the data folder of the meas.
        """

        for dataset in self.meas:
            data = dict()

            for idx, curve_name in enumerate(curve_names):
                curve = getattr(dataset.delays, curve_name, None)
                if curve is not None:
                    if curve_labels is not None:
                        data[curve_labels[idx]] = curve
                    else:
                        data[curve_names[idx]] = curve

            # Create a pandas DataFrame with each array as a column
            df = pd.DataFrame(data)
            # Display the first few rows of the DataFrame
            print(df.head())

            # Export the DataFrame to a CSV file
            if csv_path == None:
                csv_path = f"{DATASETS_DIR}csv/"
                print(csv_path)

            if if_save == True:
                df.to_csv(
                    os.path.join(csv_path, f"{dataset.data.meas_label}_{"_".join(curve_labels)}.csv"), index=True
                )
                print(
                    f"Dataframe saved to {os.path.join(csv_path, f"{dataset.data.meas_label}_{"_".join(curve_labels)}.csv")}"
                )

        return 

4.1 Usage of class MultiMeas¶

4.1.1 Import datasets¶

In [19]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54 = MultiMeas(meas_labels=["s39", "s40", "s54"])
RNTIs in packets of s39: ['dc46']
For packet with 21767 in s39, tbs is None but segments is not None, Remove this packet!
2024-12-19 15:55:16.802 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:16.969 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:17.324 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:17.470 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:17.791 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:17.941 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:19.345 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:19.455 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:19.903 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:20.171 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:20.752 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:20.753 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:20.984 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:20.986 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:21.730 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:21.731 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:22.090 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:22.093 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:22.881 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:22.981 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:23.744 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:23.868 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:24.137 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:24.208 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:55:24.351 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:55:24.422 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
RNTIs in packets of s40: ['9afe']
RNTIs in packets of s54: ['b4f7']
2024-12-19 15:55:49.569 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.570 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.699 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.701 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.860 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.872 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:49.903 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.029 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.030 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.163 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.164 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.202 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.203 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.237 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.249 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.263 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.274 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.298 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.299 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.301 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.310 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.312 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.360 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.361 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.365 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.375 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.398 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.415 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.422 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.437 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.453 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.460 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.461 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.483 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.490 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.494 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.498 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.562 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.563 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.577 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.586 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.588 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.616 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.617 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.677 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.682 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.683 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.724 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.872 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.873 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.959 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:50.960 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.034 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.044 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.079 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.246 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.247 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.352 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.352 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.417 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.418 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.453 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.467 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.479 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.483 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.509 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.511 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.512 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.519 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.520 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.558 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.559 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.563 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.568 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.573 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.577 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.581 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.593 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.603 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.609 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.609 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.628 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.632 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.637 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.643 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.713 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.714 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.729 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.736 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.738 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.760 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.762 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.798 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.803 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.806 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.837 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.927 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:51.928 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.010 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.011 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.099 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.110 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.141 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.276 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.277 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.376 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.377 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.418 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.419 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.455 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.462 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.473 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.480 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.500 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.501 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.501 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.510 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.511 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.557 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.558 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.563 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.566 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.573 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.578 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.583 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.595 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.605 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.611 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.611 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.653 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.661 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.673 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.680 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.749 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.751 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.768 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.780 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.781 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.833 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.836 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.912 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.926 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:52.958 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:53.005 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.327 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.328 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.371 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.372 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.412 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.416 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.430 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.484 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.484 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.529 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.529 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.554 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.555 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.582 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.586 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.596 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.602 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.618 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.622 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.625 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.630 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.632 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.660 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.661 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.665 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.669 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.674 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.678 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.683 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.691 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.697 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.701 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.702 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.716 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.719 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.724 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.728 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.781 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.783 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.794 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.803 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.805 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.829 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.830 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.871 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.878 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.879 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:55.901 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.028 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.029 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.226 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.228 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.396 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.411 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.457 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.629 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.631 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.734 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.738 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.793 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.793 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.835 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.845 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.858 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.867 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.890 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.892 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.893 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.898 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.899 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.950 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.950 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.956 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.961 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.967 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.973 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.978 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:56.992 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.000 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.008 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.010 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.032 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.037 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.043 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.047 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.107 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.108 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.122 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.132 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.133 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.159 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.160 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.199 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.207 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.209 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.228 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.330 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.330 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.331 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.333 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.478 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.479 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.479 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.480 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.599 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.600 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.613 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.614 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.649 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.650 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.816 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.817 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.817 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.818 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.987 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.988 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.989 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:57.992 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.068 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.070 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.071 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.073 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.130 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.131 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.142 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.143 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.159 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.160 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.171 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.171 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.205 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.206 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.207 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.208 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.209 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.210 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.218 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.221 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.222 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.223 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.288 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.289 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.290 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.291 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.297 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.298 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.303 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.307 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.315 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.317 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.326 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.327 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.335 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.336 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.357 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.359 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.372 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.373 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.381 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.382 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.383 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.385 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.420 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.421 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.429 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.430 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.437 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.438 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.445 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.446 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.538 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.539 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.541 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.542 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.562 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.563 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.579 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.580 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.580 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.581 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.615 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.617 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.617 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.618 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.682 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.683 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.691 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.692 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.694 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.695 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.730 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.730 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.909 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.909 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.911 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:58.912 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.145 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.147 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.149 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.150 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.376 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.376 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.399 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.400 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.463 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.464 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.788 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.789 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.790 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:55:59.792 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.026 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.027 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.028 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.028 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.147 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.148 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.149 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.149 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.231 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.232 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.252 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.254 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.284 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.285 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.310 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.311 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.371 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.372 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.373 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.376 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.378 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.380 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.400 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.401 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.403 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.406 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.573 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.575 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.578 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.578 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.594 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.597 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.609 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.611 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.624 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.627 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.643 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.645 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.660 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.662 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.720 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.722 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.759 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.760 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.773 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.776 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.777 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.777 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.853 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.855 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.876 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.878 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.908 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.910 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.938 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:00.940 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.107 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.109 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.111 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.112 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.141 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.143 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.169 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.170 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.171 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.172 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.245 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.245 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.247 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.248 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.375 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.377 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.392 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.393 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.394 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.395 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.443 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.444 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.551 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.554 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.598 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.599 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.670 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.679 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.696 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.752 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.754 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.806 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.807 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.835 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.838 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.862 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.869 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.876 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.882 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.903 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.905 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.907 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.913 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.915 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.949 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.950 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.957 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.963 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.966 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.971 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:01.975 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.005 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.013 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.017 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.018 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.032 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.037 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.043 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.047 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.073 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.075 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.081 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.089 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.090 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.100 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.101 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.119 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.125 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.126 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:02.141 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.007 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.008 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.081 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.083 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.154 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.161 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.181 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.291 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.293 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.377 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.378 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.422 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.423 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.470 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.479 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.489 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.495 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.517 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.518 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.520 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.528 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.529 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.564 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.564 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.569 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.573 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.578 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.582 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.588 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.602 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.609 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.614 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.616 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.635 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.639 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.644 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.648 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.694 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.695 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.708 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.715 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.716 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.739 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.740 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.773 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.777 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.778 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.794 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.863 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.864 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.901 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.903 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.939 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.946 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:56:03.960 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.005 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.006 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.043 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.044 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.064 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.065 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.080 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.084 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.091 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.096 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.104 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.108 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.109 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.112 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.113 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.132 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.133 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.138 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.141 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.145 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.148 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.151 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.158 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.163 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.167 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.168 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.183 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.189 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.192 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.196 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.231 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.232 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.239 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.245 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.246 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.258 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.260 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.281 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.284 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.285 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.294 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.345 | ERROR    | decomp:get_tx_delay:246 - Packet 37888 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.346 | ERROR    | decomp:get_tx_delay:246 - Packet 37887 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.380 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.381 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.440 | ERROR    | decomp:get_tx_delay:246 - Packet 30349 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.443 | ERROR    | decomp:get_tx_delay:246 - Packet 30028 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.457 | ERROR    | decomp:get_tx_delay:246 - Packet 29033 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.518 | ERROR    | decomp:get_tx_delay:246 - Packet 23970 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.520 | ERROR    | decomp:get_tx_delay:246 - Packet 23969 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.559 | ERROR    | decomp:get_tx_delay:246 - Packet 19965 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.560 | ERROR    | decomp:get_tx_delay:246 - Packet 19964 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.578 | ERROR    | decomp:get_tx_delay:246 - Packet 17962 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.579 | ERROR    | decomp:get_tx_delay:246 - Packet 17961 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.596 | ERROR    | decomp:get_tx_delay:246 - Packet 16291 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.600 | ERROR    | decomp:get_tx_delay:246 - Packet 15994 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.606 | ERROR    | decomp:get_tx_delay:246 - Packet 15490 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.612 | ERROR    | decomp:get_tx_delay:246 - Packet 15171 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.620 | ERROR    | decomp:get_tx_delay:246 - Packet 14204 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.622 | ERROR    | decomp:get_tx_delay:246 - Packet 14202 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.624 | ERROR    | decomp:get_tx_delay:246 - Packet 14200 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.629 | ERROR    | decomp:get_tx_delay:246 - Packet 13958 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.630 | ERROR    | decomp:get_tx_delay:246 - Packet 13957 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.655 | ERROR    | decomp:get_tx_delay:246 - Packet 11955 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.658 | ERROR    | decomp:get_tx_delay:246 - Packet 11954 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.663 | ERROR    | decomp:get_tx_delay:246 - Packet 11754 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.665 | ERROR    | decomp:get_tx_delay:246 - Packet 11593 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.668 | ERROR    | decomp:get_tx_delay:246 - Packet 11400 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.672 | ERROR    | decomp:get_tx_delay:246 - Packet 11203 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.675 | ERROR    | decomp:get_tx_delay:246 - Packet 11012 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.681 | ERROR    | decomp:get_tx_delay:246 - Packet 10494 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.684 | ERROR    | decomp:get_tx_delay:246 - Packet 10146 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.687 | ERROR    | decomp:get_tx_delay:246 - Packet 9952 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.689 | ERROR    | decomp:get_tx_delay:246 - Packet 9951 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.698 | ERROR    | decomp:get_tx_delay:246 - Packet 9033 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.700 | ERROR    | decomp:get_tx_delay:246 - Packet 8870 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.706 | ERROR    | decomp:get_tx_delay:246 - Packet 8707 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.709 | ERROR    | decomp:get_tx_delay:246 - Packet 8544 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.743 | ERROR    | decomp:get_tx_delay:246 - Packet 5948 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.744 | ERROR    | decomp:get_tx_delay:246 - Packet 5947 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.751 | ERROR    | decomp:get_tx_delay:246 - Packet 5393 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.758 | ERROR    | decomp:get_tx_delay:246 - Packet 4974 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.760 | ERROR    | decomp:get_tx_delay:246 - Packet 4973 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.772 | ERROR    | decomp:get_tx_delay:246 - Packet 3944 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.775 | ERROR    | decomp:get_tx_delay:246 - Packet 3943 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.811 | ERROR    | decomp:get_tx_delay:246 - Packet 2168 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.815 | ERROR    | decomp:get_tx_delay:246 - Packet 1941 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.817 | ERROR    | decomp:get_tx_delay:246 - Packet 1940 phy.in_t or phy.in_t not present
2024-12-19 15:56:04.833 | ERROR    | decomp:get_tx_delay:246 - Packet 1098 phy.in_t or phy.in_t not present
In [20]:
if IF_SHOW_USAGE == True:
    print(Meas_s39_s40_s54.meas[0].data.meas_label)
    print(Meas_s39_s40_s54.meas_labels)
s39
['s39', 's40', 's54']

4.1.2 check Data¶

In [21]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].checkData("packets")
{
    "sn": 1,
    "id": 21766,
    "len": 48,
    "ip.in_t": 1729237468.921818,
    "ip.out_t": 1729237468.927717,
    "rlc.in_t": 1729237468.921827,
    "rlc.out_t": 1729237468.927699,
    "backlog": 0,
    "rlc.attempts": [
        {
            "id": 0,
            "so": 0,
            "len": 51,
            "rep_acked": true,
            "resegment": [
                NaN,
                NaN,
                NaN,
                NaN
            ],
            "repeated": false,
            "mac.in_t": 1729237468.926534,
            "mac.out_t": 1729237468.927699,
            "rnti": "dc46",
            "frame": 293,
            "slot": 4,
            "acked": true,
            "mac.attempts": [
                {
                    "len": 116,
                    "id": 75,
                    "rnti": "dc46",
                    "frame": 293,
                    "slot": 4,
                    "hqpid": 10,
                    "phy.in_t": 1729237468.92654,
                    "phy.out_t": 1729237468.927645,
                    "acked": true,
                    "hqround": 0,
                    "next_id": null,
                    "prev_id": null
                }
            ]
        }
    ]
}

4.1.3 plotCCDF plot CCDFs of certain delay components from certain datasets¶

In [22]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotCCDF(
        ["ran_delays", "scheduling_delays"], ["s39", "s49", "s54"]
    )
No description has been provided for this image
In [23]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotCCDF(
        ["queueing_delays_wo_scheduling_delay", "queueing_delays", "scheduling_delays"],
        ["s39"],
    )
No description has been provided for this image

4.1.4 plotAllPerDelayType plot CCDFs from multiple meas files on the same axes¶

In [24]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotAllPerDelayType(subplot_division=[5, 3])
No description has been provided for this image

4.1.5 plotHistograms¶

Plots histograms for multiple arrays side by side on the same axes with normalized frequency.

In [25]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotHistograms("segments")
No description has been provided for this image
In [26]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotHistograms("mcss")
No description has been provided for this image
In [27]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotCCDF(["packet_size"], ["s39"])
No description has been provided for this image

4.1.6 plotTimeSeries¶

In [28]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotTimeSeries(
        [
            "segmentation_delay",
            "scheduling_delays",
            "segmentation_delays_wo_scheduling_delay",
            "segments",
        ],
        ["s39"],
        start_idx=2500,
        end_idx=2600,
    )
No description has been provided for this image
In [29]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.plotTimeSeries(
        [
            "queueing_delays",
            "scheduling_delays",
            "queueing_delays_wo_scheduling_delay",
        ],
        ["s39"],
        start_idx=2500,
        end_idx=2600,
    )
No description has been provided for this image

5 Export to DataFrame¶

In [30]:
if IF_SHOW_USAGE == True:
    df = Meas_s39_s40_s54.meas[0].dataFrame(
        [
            "tbss",
            "segments",
            "packet_size",
            "timestamps",
            "segmentation_delays_wo_scheduling_delay",
            "queueing_delays_wo_scheduling_delay",
        ],  # attrbutes name of Meas.delays
        [
            "TBS",
            "SegmentsNum",
            "PacketSize",
            "TimeStamps",
            "SegmentDelay(noSched)",
            "QueueingDelay(noSched)",
        ],  # labels to display (optional)
    )
   TBS  SegmentsNum  PacketSize  TimeStamps  SegmentDelay(noSched)  \
0  116            1          48       21766               2.076864   
1  116            1          48       21765               2.111197   
2  116            1          60       21764               2.075911   
3   24            2          52       21763               9.627104   
4  145            1          53       21762               2.051115   

   QueueingDelay(noSched)  
0                2.025843  
1                2.021074  
2                2.002001  
3                2.027035  
4                1.973152  
./data/s39
Dataframe saved to ./data/s39\TBS_SegmentsNum_PacketSize_TimeStamps_SegmentDelay(noSched)_QueueingDelay(noSched).csv

6 Show Correlation¶

6.1 plotCrossCorrelation Correlation Coef Matrix¶

In [31]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotCrossCorrelation(
        ["mcss", "tbss", "segments", "packet_size"],  # attrbutes name of Meas.delays
        ["MCS", "TBS", "SegmentsNumber", "PacketSize"],  # labels to display (optional)
    )
   MCS  TBS  SegmentsNumber  PacketSize
0    9  116               1          48
1    9  116               1          48
2    9  116               1          60
3    9   24               2          52
4    9  145               1          53
./data/s39
No description has been provided for this image
In [32]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[1].plotAllAutoCorrelation(

        subplot_division=[8, 2],

    )
c:\Users\18263\.conda\envs\ProjectCourse_5GDelay\Lib\site-packages\statsmodels\tsa\stattools.py:693: RuntimeWarning: invalid value encountered in divide
  acf = avf[: nlags + 1] / avf[0]
No description has been provided for this image

6.2 plotTLCC(d1, d2)¶

offset =-2 $\Rightarrow$ d1[i] impacted by d2[i-2]

offset = 1 $\Rightarrow$ d1[i] impacted by d2[i+1] (wrong) $\Rightarrow$ d2[i] impacted by d1[i-1] (true)

In [33]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotTLCC(
        ["segments", "packet_size"],  # attrbutes name of Meas.delays
        ["SegmentsNumber", "PacketSize"],  # labels to display (optional)
    )
No description has been provided for this image
In [34]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotTLCC(

        ["segments", "tbss"],  # attrbutes name of Meas.delays

    )

# number of segments[i] ~ TBS [i-2]
No description has been provided for this image
In [35]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotTLCC(
        ["mcss", "segments"],  # attrbutes name of Meas.delays
        ["MCS", "SegmentsNumber"],  # labels to display (optional)
    )
No description has been provided for this image
In [36]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotTLCC(

        ["mcss", "tbss"],  # attrbutes name of Meas.delays

    )
No description has been provided for this image
In [37]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[1].plotTLCC(

        ["queueing_delays", "scheduling_delays"]  # attrbutes name of Meas.delays

    )
No description has been provided for this image
In [38]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[1].plotTLCC(
        [
            "queueing_delays_wo_scheduling_delay",
            "segmentation_delays_wo_scheduling_delay",
        ],  # attrbutes name of Meas.delays
    )
No description has been provided for this image
In [39]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[1].plotTLCC(
        [
            "segmentation_delays_wo_scheduling_delay",
            "frame_alignment_delays",
        ],  # attrbutes name of Meas.delays
    )
No description has been provided for this image
In [40]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].plotTLCC(

        [

            "mcss",

            "segments",

        ],  # attrbutes name of Meas.delays

    )
No description has been provided for this image

Test¶

In [41]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40_s54.meas[0].listDataAttr()

Show length¶

In [42]:
if IF_SHOW_USAGE == True:
    print(list(vars(Meas_s39_s40_s54.meas[0].delays).keys()))  # ['attr1', 'attr2']

    for attr_name in list(vars(Meas_s39_s40_s54.meas[0].delays).keys()):
        attr = getattr(Meas_s39_s40_s54.meas[0].delays, attr_name, None)
        if attr is not None:
            print(
                f"len(Meas_{Meas_s39_s40_s54.meas[0].data.meas_label}.delays.{attr_name})= {len(attr)} "
            )
# print(len(Meas_s39_s40_s49.meas[1].delays.queueing_delays))
# print(len(Meas_s39_s40_s49.meas[1].delays.frame_alignment_delays))
# print(len(Meas_s39_s40_s49.meas[1].delays.segmentation_delay))
# print(len(Meas_s39_s40_s49.meas[1].delays.mcss))
['tbss', 'idt', 'frame_alignment_delays', 'scheduling_delays', 'ran_delays', 'ran_delays_wo_frame_alignment_delay', 'ran_delays_wo_scheduling_delay', 'queueing_delays', 'queueing_delays_wo_scheduling_delay', 'segmentation_delay', 'segmentation_delays_wo_scheduling_delay', 'segments', 'retx_delays', 'mcss', 'packet_size', 'timestamps']
len(Meas_s39.delays.tbss)= 21767 
len(Meas_s39.delays.idt)= 21766 
len(Meas_s39.delays.frame_alignment_delays)= 21767 
len(Meas_s39.delays.scheduling_delays)= 21767 
len(Meas_s39.delays.ran_delays)= 21767 
len(Meas_s39.delays.ran_delays_wo_frame_alignment_delay)= 21767 
len(Meas_s39.delays.ran_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.queueing_delays)= 21767 
len(Meas_s39.delays.queueing_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.segmentation_delay)= 21767 
len(Meas_s39.delays.segmentation_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.segments)= 21767 
len(Meas_s39.delays.retx_delays)= 21767 
len(Meas_s39.delays.mcss)= 21767 
len(Meas_s39.delays.packet_size)= 21767 
len(Meas_s39.delays.timestamps)= 21767 
In [43]:
if IF_SHOW_USAGE == True:
    queueing_delay   = Meas_s39_s40_s54.meas[0].delays.queueing_delays
    scheduling_delay = Meas_s39_s40_s54.meas[0].delays.scheduling_delays

    diff = queueing_delay - scheduling_delay
    diff = diff[diff<0]
    len(diff)
    print(diff)
[]
In [44]:
if IF_SHOW_USAGE == True:
    len(Meas_s39_s40_s54.meas[0].data.packets)
In [45]:
if IF_SHOW_USAGE == True:
    Meas_s39 = Meas(meas_label="s39")
RNTIs in packets of s39: ['dc46']
For packet with 21767 in s39, tbs is None but segments is not None, Remove this packet!
2024-12-19 15:57:01.709 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:01.816 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:02.115 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:02.237 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:02.601 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:02.728 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:03.976 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:04.157 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:04.486 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:04.653 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:05.167 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:05.168 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:05.418 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:05.419 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.061 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.062 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.358 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.360 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.921 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:06.979 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:07.582 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:07.683 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:07.912 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:07.966 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:08.135 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:08.200 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
In [46]:
if IF_SHOW_USAGE == True:
    print(Meas_s39.data.sched_sched_sorted_dict[1729237464.116453])
{'decision_ts': 1729237464.113453, 'schedule_ts': 1729237464.116453, 'symbols_start': 10, 'symbols_num': 3, 'prbs_start': 0, 'prbs_num': 5, 'cause': {'rnti': 'dc46', 'tbs': 24, 'mcs': 9, 'rbs': 5, 'type': 3, 'diff': 16724.0, 'buf': nan, 'sched': nan, 'hqround': nan, 'hqpid': nan}}
In [47]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40 = MultiMeas(meas_labels=["s39", "s40"])
RNTIs in packets of s39: ['dc46']
For packet with 21767 in s39, tbs is None but segments is not None, Remove this packet!
2024-12-19 15:57:13.051 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:13.150 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:13.446 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:13.570 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:13.884 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:14.034 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:15.528 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:15.614 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:15.881 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:16.047 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:16.517 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:16.518 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:16.744 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:16.745 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:17.409 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:17.410 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:17.740 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:17.743 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:18.279 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:18.333 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:18.922 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:19.020 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:19.219 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:19.270 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:19.402 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:19.460 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
RNTIs in packets of s40: ['9afe']
In [48]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40.plotHistograms("packet_size", figsize=[20, 5])
No description has been provided for this image
In [49]:
if IF_SHOW_USAGE == True:
    Meas_s39_s40.plotHistograms("segments", figsize=[12, 5])
No description has been provided for this image

7 s39, s40, s59~s66¶

In [50]:
Meas_s39_40_s59s66 = MultiMeas(meas_labels=["s39","s40","s59", "s61","s62","s63","s64","s65","s66"])
RNTIs in packets of s39: ['dc46']
For packet with 21767 in s39, tbs is None but segments is not None, Remove this packet!
2024-12-19 15:57:46.097 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:46.275 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:46.909 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:47.045 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:47.407 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:47.591 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:49.269 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:49.361 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:49.676 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:49.851 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:50.488 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:50.489 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:50.795 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:50.797 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:51.539 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:51.541 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:51.885 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:51.886 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:52.614 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:52.693 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:53.432 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:53.567 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:53.832 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:53.892 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
2024-12-19 15:57:54.036 | ERROR    | decomp:get_tx_delay:246 - Packet 16138 phy.in_t or phy.in_t not present
2024-12-19 15:57:54.093 | ERROR    | decomp:get_tx_delay:246 - Packet 10013 phy.in_t or phy.in_t not present
RNTIs in packets of s40: ['9afe']
RNTIs in packets of s59: ['7b9c']
2024-12-19 15:58:18.642 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.708 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.709 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.709 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.710 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.752 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.754 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.754 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.755 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.756 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.758 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.759 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.761 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.782 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.786 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.787 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.818 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:18.830 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.275 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.278 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.279 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.281 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.282 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.283 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.284 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.285 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.433 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.533 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.534 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.588 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.590 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.592 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.593 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.626 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.628 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.629 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.698 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:19.722 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.234 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.235 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.235 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.236 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.340 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.433 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.434 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.471 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.472 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.472 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.473 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.495 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.496 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.498 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.540 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:20.558 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:21.083 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:21.085 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:21.086 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:21.086 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.878 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.923 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.924 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.944 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.945 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.945 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.946 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.958 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.958 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.959 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.981 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:22.990 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.255 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.256 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.256 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.257 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.334 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.425 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.425 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.473 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.474 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.474 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.475 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.498 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.499 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.500 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.550 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:23.570 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.135 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.136 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.137 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.138 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.269 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.271 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.403 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.404 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
For packet(id=33786), tx_delay == None!
2024-12-19 15:58:24.466 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.467 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.468 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.468 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
For packet(id=31778), tx_delay == None!
2024-12-19 15:58:24.502 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.503 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.505 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.505 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.506 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.507 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.583 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.584 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.610 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:24.611 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.418 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.419 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.420 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.421 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
For packet(id=2732), tx_delay == None!
2024-12-19 15:58:25.596 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.597 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.786 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.787 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
For packet(id=33786), tx_delay == None!
2024-12-19 15:58:25.873 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.873 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.875 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.875 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
For packet(id=31778), tx_delay == None!
2024-12-19 15:58:25.919 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.920 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.920 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.922 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.922 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:25.924 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:26.012 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:26.013 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:26.049 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:26.051 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.363 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.364 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.364 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.366 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
For packet(id=2732), tx_delay == None!
2024-12-19 15:58:27.517 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.553 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.555 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.573 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.575 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.576 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.576 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.586 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.587 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.587 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.605 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.612 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.820 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.821 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.822 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:27.822 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.590 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.655 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.655 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.687 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.687 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.688 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.689 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.707 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.707 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.708 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.740 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:28.753 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.154 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.156 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.156 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.157 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.229 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.268 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.268 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.288 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.289 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.290 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.291 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.302 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.303 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.304 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.330 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.338 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.543 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.543 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.544 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.544 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.591 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.628 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.630 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.647 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.648 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.650 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.652 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.663 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.664 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.664 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.687 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.693 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.900 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.901 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.903 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 15:58:29.903 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
RNTIs in packets of s61: ['a431']
2024-12-19 15:58:40.007 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:40.246 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:40.469 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:40.471 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:40.836 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:40.972 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.121 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.121 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.511 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.673 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.857 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:41.858 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:43.903 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:43.995 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.105 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.106 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.493 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.705 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.936 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:44.938 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:45.536 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:45.537 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:45.815 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:45.816 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.115 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.116 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.119 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.119 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.966 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:46.967 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.341 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.343 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.774 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.775 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.779 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:47.780 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:48.405 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:48.486 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:48.567 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:48.568 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:49.516 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:49.649 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:49.804 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:49.805 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.109 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.174 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.251 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.252 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.436 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.506 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.583 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 15:58:50.583 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
RNTIs in packets of s62: ['a244']
2024-12-19 15:58:58.973 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:58:58.976 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:58:58.977 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.021 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.022 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.031 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.066 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.072 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.073 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.096 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.189 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.190 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.190 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.191 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.211 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.292 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.293 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.293 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.294 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.335 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.421 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.445 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.467 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.599 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.600 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.635 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.637 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.637 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.682 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.683 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.689 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.733 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.740 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.741 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.768 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.866 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.868 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.890 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.985 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:58:59.986 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.036 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.141 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.165 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.186 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.316 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.317 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.325 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.329 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.330 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.382 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.383 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.390 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.439 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.449 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.449 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.476 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.607 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.608 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.633 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.738 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.739 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.794 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.918 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.950 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:00.979 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:01.148 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:01.148 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.494 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.499 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.501 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.543 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.544 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.550 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.581 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.586 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.586 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.603 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.670 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.670 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.687 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.757 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.760 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.805 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.912 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.931 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:02.949 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.043 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.045 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.054 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.057 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.058 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.121 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.124 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.134 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.190 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.199 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.201 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.233 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.365 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.365 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.394 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.506 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.507 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.569 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.716 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.758 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:03.795 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.010 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.012 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.023 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.024 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.030 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.030 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.031 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.031 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.117 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.118 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.119 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.120 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.134 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.135 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.209 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.210 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.222 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.225 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.226 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.227 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.293 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.294 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.474 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.475 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 15:59:04.512 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.513 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.669 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.670 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 15:59:04.763 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.763 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.988 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:04.992 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.049 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.050 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.099 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.100 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.394 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.395 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.396 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.396 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.416 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.418 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.426 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.428 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.429 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.431 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.577 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.578 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.580 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.581 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.607 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.607 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.731 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.732 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.754 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.754 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.755 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.755 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.820 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:05.821 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.108 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.109 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 15:59:06.157 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.158 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.371 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.372 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 15:59:06.511 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.512 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.816 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.817 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.893 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.894 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.959 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:06.960 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.357 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.358 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.360 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.363 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.383 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.385 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.385 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.412 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.413 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.417 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.438 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.442 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.444 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.456 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.506 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.507 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.518 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.588 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.589 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.613 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.668 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.683 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.698 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.777 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:07.779 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.485 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.487 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.488 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.531 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.532 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.539 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.578 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.584 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.584 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.605 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.701 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.701 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.738 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.833 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.834 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.881 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:08.985 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.012 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.035 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.176 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.177 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.188 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.189 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.190 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.212 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.213 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.218 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.236 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.240 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.241 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.251 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.295 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.295 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.303 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.341 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.342 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.363 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.418 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.433 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.444 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.513 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.514 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.522 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.525 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.529 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.549 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.550 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.553 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.579 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.609 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.612 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.627 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.668 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.669 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.679 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.715 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.715 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.735 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.782 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.794 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.806 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.869 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 15:59:09.870 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
RNTIs in packets of s63: ['71f5']
2024-12-19 15:59:18.853 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.860 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.866 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.867 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.869 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.871 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.874 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.881 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.883 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.884 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.889 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.901 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.903 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.912 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.913 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.919 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.921 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.926 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.929 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.938 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.941 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.949 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.953 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.955 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.960 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.965 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:18.995 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.002 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.006 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.010 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.016 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.017 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.018 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.022 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.024 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.044 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.048 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.054 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.059 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.064 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.065 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.075 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.079 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.091 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.100 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.101 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.102 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.105 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.106 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.110 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.111 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.130 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.142 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.143 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.145 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.145 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.159 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.182 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.185 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.189 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.189 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.190 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.190 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.193 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.196 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.204 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.213 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.236 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.279 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.281 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.288 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.293 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.295 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.300 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.302 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.303 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.310 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.311 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.312 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.314 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.316 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.318 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.318 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.321 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.322 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.322 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.323 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.325 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.327 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.329 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.330 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.331 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.335 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.357 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.359 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.362 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.364 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.364 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.366 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.368 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.369 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.374 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.380 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.383 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.384 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.390 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.396 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.410 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.423 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.427 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.430 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.431 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.431 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.435 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.437 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.440 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.442 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.450 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.453 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.454 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.457 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.461 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.461 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.462 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.465 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.466 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.467 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.468 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.473 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.479 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.481 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.481 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.485 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.496 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.507 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.509 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.513 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.531 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.547 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.547 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.552 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.594 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.615 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.616 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.625 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.628 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.640 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.641 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.654 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.656 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.716 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.768 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.775 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.783 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.783 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.785 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.788 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.793 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.799 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.802 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.805 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.809 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.821 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.823 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.830 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.831 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.841 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.846 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.852 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.857 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.869 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.872 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.880 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.883 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.885 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.889 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.893 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.933 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.942 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.945 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.948 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.954 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.956 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.959 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.962 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.965 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.983 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.987 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.992 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:19.995 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.001 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.002 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.014 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.019 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.033 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.041 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.043 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.044 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.046 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.047 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.051 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.052 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.076 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.091 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.093 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.105 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.140 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.147 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.154 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.157 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.158 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.161 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.176 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.209 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.212 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.219 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.225 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.228 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.232 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.236 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.237 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.243 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.244 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.245 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.245 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.249 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.252 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.253 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.255 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.256 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.257 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.260 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.263 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.266 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.268 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.270 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.271 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.277 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.312 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.315 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.318 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.322 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.325 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.328 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.333 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.336 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.351 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.367 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.368 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.369 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.372 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.379 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.388 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.401 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.403 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.405 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.411 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.413 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.415 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.415 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.421 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.427 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.428 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.431 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.433 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.434 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.435 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.436 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.439 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.442 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.444 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.454 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.490 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.494 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.496 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.504 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.528 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.540 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.541 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.548 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.569 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.583 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.584 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.587 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.610 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.627 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.628 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.635 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.638 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.650 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.651 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.667 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.668 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.732 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.755 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.763 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.773 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.774 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.777 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.780 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.785 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.798 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.800 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.804 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.807 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.822 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.824 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.835 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.837 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.846 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.849 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.857 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.862 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.876 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.879 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.889 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.897 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.898 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.900 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.906 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.951 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.963 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.967 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.971 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.979 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.980 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.981 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.984 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:20.988 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.012 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.017 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.030 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.043 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.066 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.068 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.087 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.095 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.118 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.133 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.133 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.135 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.137 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.143 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.149 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.150 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.178 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.197 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.198 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.214 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.253 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.258 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.262 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.263 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.264 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.265 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.272 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.299 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.301 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.312 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.316 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.319 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.324 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.328 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.329 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.335 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.335 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.337 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.338 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.342 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.344 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.345 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.347 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.349 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.350 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.351 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.352 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.356 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.358 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.361 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.362 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.368 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.398 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.399 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.405 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.437 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.440 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.442 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.447 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.450 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.459 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.467 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.468 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.469 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.471 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.476 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.484 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.495 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.497 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.498 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.502 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.503 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.505 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.507 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.514 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.517 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.518 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.522 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.525 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.527 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.530 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.531 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.533 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.534 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.541 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.553 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.557 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.559 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.565 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.580 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.593 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.595 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.602 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.664 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.693 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.694 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.699 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.723 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.743 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.744 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.752 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.754 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.768 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.769 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.787 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.788 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:21.878 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.668 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.674 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.680 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.681 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.682 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.685 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.688 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.695 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.696 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.698 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.699 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.709 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.711 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.717 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.718 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.723 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.727 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.731 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.734 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.742 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.744 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.749 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.753 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.754 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.756 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.760 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.787 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.792 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.795 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.797 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.803 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.804 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.805 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.807 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.810 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.825 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.829 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.833 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.836 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.841 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.842 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.850 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.854 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.896 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.906 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.907 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.916 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.917 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.918 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.924 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.926 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.943 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.953 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.956 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.964 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.988 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.991 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.994 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.996 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.996 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:23.997 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.004 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.021 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.023 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.029 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.032 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.033 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.036 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.039 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.039 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.043 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.044 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.044 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.045 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.046 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.048 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.049 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.050 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.050 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.051 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.051 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.054 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.058 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.059 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.061 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.061 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.066 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.081 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.082 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.084 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.086 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.088 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.089 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.093 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.094 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.099 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.104 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.105 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.105 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.109 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.111 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.117 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.123 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.126 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.127 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.129 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.164 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.166 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.167 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.172 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.177 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.178 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.180 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.182 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.182 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.184 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.185 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.188 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.190 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.192 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.197 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.201 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.203 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.204 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.208 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.513 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.521 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.522 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.525 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.536 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.547 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.549 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.552 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.570 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.580 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.580 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.585 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.587 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.598 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.598 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.611 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.611 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.698 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.713 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.722 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.733 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.735 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.740 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.744 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.748 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.761 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.763 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.766 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.769 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.784 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.786 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.797 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.799 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.813 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.818 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.830 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.834 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.849 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.854 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.864 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.870 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.872 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.877 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.881 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.940 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.950 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.956 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.960 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.977 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.978 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.981 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.985 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:24.988 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.018 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.024 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.033 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.037 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.044 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.045 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.062 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.068 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.086 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.099 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.100 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.102 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.105 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.106 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.114 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.114 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.149 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.174 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.176 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.195 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.239 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.243 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.249 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.250 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.251 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.251 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.275 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.335 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.339 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.354 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.362 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.365 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.368 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.373 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.375 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.383 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.383 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.386 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.388 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.392 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.395 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.396 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.399 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.400 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.400 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.403 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.406 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.411 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.413 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.416 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.417 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.430 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.466 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.468 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.472 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.474 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.476 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.479 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.485 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.489 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.503 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.518 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.519 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.522 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.527 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.532 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.544 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.562 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.565 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.566 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.571 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.573 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.574 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.576 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.589 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.596 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.598 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.602 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.607 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.609 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.610 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.613 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.614 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.618 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.620 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.630 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.639 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.645 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.646 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.660 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.708 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.725 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.726 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.734 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.760 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.783 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.784 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.788 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.819 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.845 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.845 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.856 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.858 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.874 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.875 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.895 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.896 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:25.993 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.020 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.022 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.034 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.035 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.051 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.053 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.054 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.055 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.060 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.061 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.064 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.065 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.071 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.072 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.088 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.089 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.093 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.095 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.098 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.099 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.102 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.103 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.126 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.127 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.131 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.131 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.145 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.145 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.147 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.148 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.158 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.160 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.165 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.165 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.175 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.176 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.183 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.185 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.222 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.224 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.232 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.233 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.257 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.258 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.266 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.267 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.268 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.269 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.273 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.274 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.280 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.281 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.354 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.355 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.373 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.374 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.380 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.382 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.385 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.387 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.399 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.401 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.402 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.404 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.405 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.407 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.410 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.411 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.415 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.426 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.501 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.502 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.510 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.511 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.524 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.527 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.534 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.535 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.547 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.548 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.548 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.549 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.572 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.574 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.582 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.583 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.610 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.611 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.628 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.628 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.628 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.629 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.630 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.631 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.633 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.634 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.637 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.638 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.645 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.645 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.646 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.646 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.728 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.729 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.762 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.763 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 15:59:26.786 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.788 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.848 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.849 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.857 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.859 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.864 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.865 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.865 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.866 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 15:59:26.880 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.881 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.930 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.931 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.935 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.937 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.951 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.953 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.961 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.963 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.967 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.967 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.973 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.973 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.977 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.978 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.979 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:26.979 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.001 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.003 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.018 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.019 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.022 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.023 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.026 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.027 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.029 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.030 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.036 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.042 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.043 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.044 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.047 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.049 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.050 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.051 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.052 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.053 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.055 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.056 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.058 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.061 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.065 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.066 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.067 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.069 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.071 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.073 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.075 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.076 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.084 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.085 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.171 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.171 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.173 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.173 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.178 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.179 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.182 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.183 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.184 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.185 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.189 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.190 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.196 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.197 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.199 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.201 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.214 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.215 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.227 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.228 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.228 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.229 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.230 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.231 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.237 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.238 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.247 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.248 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.263 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.264 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.284 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.285 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.289 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.290 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 15:59:27.298 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.304 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.329 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.330 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.331 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.333 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.334 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.337 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.356 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.359 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.367 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.367 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.369 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.371 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.376 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.377 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.381 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.383 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.384 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.384 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.389 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.393 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.394 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.395 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.396 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.398 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.402 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.403 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.404 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.405 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.418 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.419 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.431 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.432 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.438 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.444 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.447 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.477 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.498 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.499 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.527 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.528 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.548 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.549 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.551 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.552 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.564 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.564 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.620 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.622 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.654 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.656 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.657 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.658 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.664 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.665 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.709 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.710 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.740 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.741 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.742 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.742 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.756 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.758 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.761 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.761 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.783 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.784 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.785 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.786 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.814 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.816 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.816 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.817 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.984 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:27.987 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.027 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.028 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.045 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.046 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.071 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.072 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.073 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.073 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.079 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.080 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.084 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.084 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.094 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.095 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.117 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.118 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.122 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.123 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.129 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.129 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.134 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.136 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.165 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.166 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.170 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.171 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.194 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.196 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.200 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.204 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.243 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.245 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.257 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.259 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.284 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.285 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.296 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.297 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.333 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.338 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.348 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.349 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.383 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.384 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.398 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.401 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.404 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.410 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.417 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.418 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.432 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.434 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.547 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.547 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.570 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.571 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.578 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.579 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.586 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.588 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.606 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.607 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.609 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.610 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.613 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.636 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.651 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.654 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.664 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.665 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.723 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.725 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.734 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.735 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.752 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.756 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.764 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.764 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.779 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.780 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.781 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.781 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.817 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.818 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.837 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.839 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.884 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.884 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.909 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.911 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.912 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.913 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.916 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.917 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.919 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.920 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.924 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.926 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.948 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.949 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.950 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:28.952 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.040 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.041 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.092 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.093 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 15:59:29.169 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.170 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.310 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.312 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.322 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.325 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.338 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.339 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.341 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.343 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 15:59:29.369 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.371 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.444 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.445 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.451 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.452 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.482 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.484 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.497 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.498 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.509 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.511 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.521 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.522 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.529 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.535 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.553 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.564 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.598 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.599 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.600 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.600 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.604 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.605 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.607 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.609 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.614 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.616 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.623 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.625 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.627 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.629 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.633 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.635 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.637 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.639 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.641 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.643 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.645 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.647 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.652 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.655 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.665 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.667 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.669 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.670 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.678 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.681 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.684 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.686 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.719 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.721 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.829 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.830 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.834 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.835 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.843 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.843 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.850 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.851 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.852 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.855 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.858 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.859 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.866 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.867 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.871 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.872 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.910 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.911 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.940 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.942 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.943 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.945 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.945 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.947 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.957 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.959 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.970 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.972 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.995 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:29.996 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.024 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.025 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.029 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.031 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 15:59:30.039 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.041 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.043 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.044 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.045 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.046 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.047 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.048 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.062 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.063 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.074 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.074 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.075 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.078 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.084 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.086 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.094 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.095 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.096 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.098 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.101 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.103 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.107 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.109 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.111 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.112 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.116 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.119 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.125 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.127 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.164 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.166 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.210 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.212 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.220 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.221 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.222 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.224 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.237 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.237 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.272 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.273 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.300 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.301 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.304 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.306 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.318 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.321 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.370 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.371 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.410 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.411 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.412 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.413 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.420 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.421 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.476 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.477 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.556 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.557 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.558 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.558 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.577 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.578 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.581 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.582 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.613 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.613 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.614 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.615 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.655 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.656 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.657 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.658 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.830 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.831 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.880 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.884 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.890 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.891 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.893 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.895 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.896 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.901 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.904 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.905 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.907 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.913 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.914 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.919 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.921 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.929 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.960 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.967 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.972 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.982 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.987 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:30.999 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.003 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.005 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.009 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.013 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.034 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.039 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.042 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.043 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.048 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.048 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.050 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.051 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.053 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.065 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.067 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.071 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.073 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.077 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.078 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.082 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.087 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.095 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.100 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.103 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.104 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.106 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.108 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.111 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.112 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.126 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.144 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.146 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.193 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.228 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.230 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.232 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.233 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.234 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.237 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.244 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.262 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.264 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.270 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.276 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.277 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.279 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.280 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.281 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.287 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.288 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.288 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.290 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.291 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.292 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.292 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.294 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.296 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.296 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.297 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.298 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.299 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.300 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.302 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.304 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.308 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.362 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.363 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.367 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.369 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.370 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.371 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.375 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.376 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.383 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.391 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.392 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.394 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.397 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.401 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.411 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.421 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.424 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.426 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.429 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.430 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.433 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.434 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.438 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.445 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.446 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.448 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.451 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.457 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.462 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.479 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.489 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.493 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.495 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.500 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.508 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.510 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.511 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.517 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.530 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.537 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.540 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.544 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.555 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.567 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.568 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.572 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.593 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.608 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.610 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.617 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.619 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.628 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.629 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.639 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.641 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:31.678 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.394 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.400 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.409 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.410 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.411 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.415 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.420 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.427 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.429 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.431 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.432 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.445 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.447 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.472 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.475 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.492 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.498 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.508 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.515 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.529 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.531 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.540 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.545 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.546 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.549 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.555 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.593 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.602 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.608 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.610 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.618 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.620 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.622 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.625 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.628 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.648 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.654 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.660 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.663 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.669 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.670 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.680 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.687 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.710 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.724 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.725 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.728 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.730 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.734 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.741 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.742 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.769 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.786 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.788 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.811 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.842 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.846 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.848 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.849 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.849 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.850 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.860 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.926 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.929 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.939 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.944 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.947 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.950 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.955 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.956 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.962 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.963 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.965 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.967 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.969 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.971 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.973 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.976 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.977 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.979 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.980 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.982 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.987 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.991 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.995 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:32.998 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.010 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.093 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.094 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.098 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.100 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.102 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.104 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.111 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.113 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.124 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.131 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.133 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.135 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.139 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.146 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.157 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.170 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.173 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.175 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.178 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.180 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.182 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.184 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.191 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.196 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.197 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.199 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.204 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.205 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.207 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.209 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.210 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.214 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.215 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.231 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.267 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.277 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.280 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.290 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.317 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.334 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.340 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.347 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.388 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.418 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.419 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.429 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.495 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.531 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.532 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.547 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.549 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.571 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.572 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.597 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.598 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.704 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.734 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.740 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.748 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.749 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.752 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.754 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.758 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.764 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.765 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.769 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.771 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.781 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.783 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.789 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.792 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.796 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.799 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.805 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.815 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.841 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.845 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.857 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.864 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.866 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.871 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.875 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.922 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.929 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.935 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.940 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.946 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.948 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.953 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.955 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.960 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.976 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.979 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.984 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.989 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.994 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:33.995 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.005 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.010 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.021 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.028 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.028 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.031 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.032 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.034 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.038 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.040 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.105 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.127 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.129 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.141 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.164 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.169 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.172 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.174 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.175 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.176 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.185 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.210 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.213 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.226 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.231 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.234 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.241 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.245 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.248 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.255 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.259 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.261 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.262 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.264 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.270 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.273 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.278 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.280 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.280 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.281 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.283 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.289 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.292 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.313 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.327 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.345 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.383 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.386 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.392 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.394 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.397 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.403 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.409 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.413 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.427 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.436 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.438 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.441 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.446 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.455 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.468 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.483 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.487 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.492 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.497 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.501 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.503 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.505 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.514 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.522 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.530 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.535 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.538 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.540 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.544 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.546 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.549 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.554 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.563 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.576 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.580 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.583 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.591 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.606 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.616 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.618 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.626 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.645 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.678 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.680 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.685 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.718 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.749 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.756 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.765 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.766 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.782 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.785 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.799 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.801 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.862 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.889 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.895 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.906 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.908 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.911 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.912 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.918 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.928 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.932 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.934 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.940 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.953 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.955 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.963 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.964 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.970 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.974 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.981 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.985 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.995 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 15:59:34.998 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.004 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.009 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.010 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.012 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.015 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.048 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.057 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.060 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.063 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.077 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.085 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.088 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.091 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.098 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.136 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.141 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.148 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.158 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.169 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.171 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.185 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.190 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.204 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.211 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.212 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.213 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.215 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.216 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.224 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.225 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.248 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.270 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.274 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.288 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.325 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.328 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.331 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.332 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.332 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.335 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.342 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.376 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.383 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.394 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.409 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.411 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.416 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.419 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.426 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.436 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.437 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.439 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.441 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.443 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.445 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.446 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.449 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.450 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.451 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.453 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.455 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.459 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.461 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.463 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.465 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.470 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.490 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.491 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.494 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.498 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.500 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.502 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.505 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.509 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.516 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.523 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.525 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.526 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.530 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.538 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.591 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.609 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.624 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.627 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.632 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.649 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.652 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.654 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.665 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.669 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.671 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.677 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.681 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.682 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.687 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.690 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.693 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.695 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.698 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.708 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.714 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.718 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.722 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.728 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.754 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.787 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.791 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.799 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.827 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.846 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.847 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.853 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.876 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.893 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.895 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.902 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.905 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.916 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.920 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.934 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.937 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 15:59:35.993 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
RNTIs in packets of s64: ['c7cb']
2024-12-19 15:59:43.663 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:43.664 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:44.390 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:44.391 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:45.981 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:45.982 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:48.091 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:48.092 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:49.285 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:49.287 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:50.754 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:50.756 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:50.756 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:50.757 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.006 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.007 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.009 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.009 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.804 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:53.804 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.195 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.196 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.630 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.631 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.945 | ERROR    | decomp:get_tx_delay:246 - Packet 8567 phy.in_t or phy.in_t not present
2024-12-19 15:59:55.946 | ERROR    | decomp:get_tx_delay:246 - Packet 8566 phy.in_t or phy.in_t not present
RNTIs in packets of s65: ['d5b4']
2024-12-19 16:00:03.429 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.474 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.475 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.475 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.476 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.477 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.478 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.478 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.480 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.481 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.483 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.485 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.485 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.489 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.490 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.490 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.491 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.514 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.515 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.634 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.638 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:03.843 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.128 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.227 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.278 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.280 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.281 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.282 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.285 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.291 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.311 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.323 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.324 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.326 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.327 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.328 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.329 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.331 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.332 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.333 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.334 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.361 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.393 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.405 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.482 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.529 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.531 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.532 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.533 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.534 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.535 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.536 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.537 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.568 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.590 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.732 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.737 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:04.821 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.091 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.203 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.260 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.260 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.263 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.270 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.293 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.304 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.306 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.307 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.308 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.309 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.331 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.357 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.368 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.406 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.463 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.464 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.466 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.467 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.468 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.470 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.470 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.474 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.526 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.529 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.702 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.707 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:05.810 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.170 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.334 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.417 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.419 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.422 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.431 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.461 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.477 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.481 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.483 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.485 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.486 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.515 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.550 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:06.564 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.784 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.816 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.817 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.819 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.820 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.821 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.822 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.823 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.823 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.836 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.837 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.917 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.921 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:08.973 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.138 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.210 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.248 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.249 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.252 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.257 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.275 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.288 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.291 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.293 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.294 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.296 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.320 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.341 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.350 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.379 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.451 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.452 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.453 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.453 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.454 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.455 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.464 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.485 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.534 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.535 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.717 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.722 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:09.834 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.190 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.366 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.452 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.453 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.456 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.466 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.498 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.515 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.518 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.519 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.519 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.520 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.549 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.587 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.602 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.656 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.658 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.782 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.784 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.785 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.785 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
For packet(id=37501), tx_delay == None!
2024-12-19 16:00:10.786 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.788 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.790 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.790 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
For packet(id=37500), tx_delay == None!
2024-12-19 16:00:10.833 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.835 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.836 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:10.838 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.077 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.078 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.086 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.087 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.226 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.227 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.667 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.669 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.916 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:11.918 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.094 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.096 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
For packet(id=6587), tx_delay == None!
2024-12-19 16:00:12.102 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.103 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.117 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.118 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.166 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.168 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.190 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
For packet(id=4581), tx_delay == None!
2024-12-19 16:00:12.195 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.196 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.197 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.199 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
For packet(id=4507), tx_delay == None!
2024-12-19 16:00:12.240 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.241 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.300 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.301 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.323 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.325 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.435 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.436 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.574 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.575 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.576 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.577 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
For packet(id=37501), tx_delay == None!
2024-12-19 16:00:12.580 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.581 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.581 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.585 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
For packet(id=37500), tx_delay == None!
2024-12-19 16:00:12.639 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.640 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.641 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.643 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.948 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.950 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.958 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:12.958 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:13.145 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:13.146 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:13.828 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:13.829 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.136 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.138 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.331 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.332 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
For packet(id=6587), tx_delay == None!
2024-12-19 16:00:14.339 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.340 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.363 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.364 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.437 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.438 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.476 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
For packet(id=4581), tx_delay == None!
2024-12-19 16:00:14.482 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.484 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.485 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.486 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
For packet(id=4507), tx_delay == None!
2024-12-19 16:00:14.547 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.549 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.684 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.686 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.722 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.723 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.846 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.876 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.877 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.878 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.880 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.881 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.884 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.887 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.888 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.900 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.902 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.992 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:14.996 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.042 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.202 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.268 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.305 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.306 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.308 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.313 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.329 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.336 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.339 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.339 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.341 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.342 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.374 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.407 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:15.417 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.558 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.632 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.634 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.635 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.636 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.637 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.638 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.640 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.641 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.671 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.673 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.937 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:16.943 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.054 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.346 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.464 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.528 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.529 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.532 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.539 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.566 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.578 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.581 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.583 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.584 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.584 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.606 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.635 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.649 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.704 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.730 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.731 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.731 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.732 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.733 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.756 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.772 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.773 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.790 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.792 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.859 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.864 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:17.910 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.048 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.114 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.146 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.147 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.149 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.155 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.172 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.177 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.180 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.183 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.184 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.184 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.196 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.223 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.237 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.283 | ERROR    | decomp:get_tx_delay:246 - Packet 39911 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.312 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.313 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.315 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.317 | ERROR    | decomp:get_tx_delay:246 - Packet 37501 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.318 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.319 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.320 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.320 | ERROR    | decomp:get_tx_delay:246 - Packet 37500 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.332 | ERROR    | decomp:get_tx_delay:246 - Packet 36628 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.334 | ERROR    | decomp:get_tx_delay:246 - Packet 36627 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.390 | ERROR    | decomp:get_tx_delay:246 - Packet 31139 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.392 | ERROR    | decomp:get_tx_delay:246 - Packet 31000 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.439 | ERROR    | decomp:get_tx_delay:246 - Packet 27290 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.560 | ERROR    | decomp:get_tx_delay:246 - Packet 15004 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.610 | ERROR    | decomp:get_tx_delay:246 - Packet 9505 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.636 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.638 | ERROR    | decomp:get_tx_delay:246 - Packet 6587 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.640 | ERROR    | decomp:get_tx_delay:246 - Packet 6507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.644 | ERROR    | decomp:get_tx_delay:246 - Packet 6202 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.655 | ERROR    | decomp:get_tx_delay:246 - Packet 5103 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.661 | ERROR    | decomp:get_tx_delay:246 - Packet 4581 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.663 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.664 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.665 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.667 | ERROR    | decomp:get_tx_delay:246 - Packet 4507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.677 | ERROR    | decomp:get_tx_delay:246 - Packet 3507 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.691 | ERROR    | decomp:get_tx_delay:246 - Packet 2186 phy.in_t or phy.in_t not present
2024-12-19 16:00:18.697 | ERROR    | decomp:get_tx_delay:246 - Packet 1713 phy.in_t or phy.in_t not present
RNTIs in packets of s66: ['71b4']
2024-12-19 16:00:31.085 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.087 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.088 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.089 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.321 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.323 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.329 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.331 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.611 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.709 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.711 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.716 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.717 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.718 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.720 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.721 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.723 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.726 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:31.728 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.049 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.050 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.051 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.055 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.288 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.289 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.290 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.295 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.390 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.391 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.395 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.396 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.399 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.400 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.401 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.403 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.404 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.406 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.497 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.498 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.499 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.501 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.570 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.571 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.714 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.715 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:32.868 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.035 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.037 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.041 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.045 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.047 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.048 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.452 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.454 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.762 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.764 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.867 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.868 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.869 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.871 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.873 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:33.875 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.003 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.004 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.037 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.038 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.232 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.233 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.394 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.488 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.489 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.490 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.492 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.494 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.496 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.771 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:34.772 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.078 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.079 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.190 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.192 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.195 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.197 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.198 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.199 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.350 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:35.352 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.168 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.169 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.281 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.282 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.395 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.464 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.466 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.468 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.470 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.471 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.477 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.748 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.750 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.926 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:39.928 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.001 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.002 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.002 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.005 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.006 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.010 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.113 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.116 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.194 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.195 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.463 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.465 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.789 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.954 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.955 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.956 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.962 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.963 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:40.965 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:41.546 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:41.549 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.042 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.043 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.235 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.236 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.237 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.239 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.240 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.243 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.401 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.403 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.457 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.459 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:00:42.727 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:42.728 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:00:43.020 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.021 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.144 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.147 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.148 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.148 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.149 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.150 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.150 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.152 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:00:43.600 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.601 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:00:43.906 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:43.909 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:00:44.055 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.057 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.058 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.060 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.063 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.064 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.068 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.069 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:00:44.202 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.203 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:00:44.244 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.244 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:00:44.526 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.528 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:00:44.790 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.792 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.968 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.969 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.970 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.970 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.971 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.972 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.976 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:44.976 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:00:45.428 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:45.429 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:00:45.813 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:45.815 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:00:46.004 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.006 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.009 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.009 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.011 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.013 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.013 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.015 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:00:46.219 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.220 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:00:46.237 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.238 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.292 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.293 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.345 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.373 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.376 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.376 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.377 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.378 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.378 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.476 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.477 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.558 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.559 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.593 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.594 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.595 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.597 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.597 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.598 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.631 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:46.632 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.435 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.436 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.518 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.519 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.607 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.666 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.667 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.668 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.668 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.668 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.669 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.842 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.845 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.994 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:47.995 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.053 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.054 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.054 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.055 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.078 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.080 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.158 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.160 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.176 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.178 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.238 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.241 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.300 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.328 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.329 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.331 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.332 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.332 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.333 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.409 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.411 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.495 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.496 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.528 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.529 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.531 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.532 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.532 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.533 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.564 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.565 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.574 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.577 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.621 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.621 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.717 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.745 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.746 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.747 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.748 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.749 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.750 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.829 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.830 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.896 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.897 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.927 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.928 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.929 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.930 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.930 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.931 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.971 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:00:48.975 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
In [51]:
item = Meas_s39_40_s59s66.meas[0]
for attr_name in list(vars(item.delays).keys()):
    attr = getattr(item.delays, attr_name, None)
    if attr is not None:
        print(
            f"len(Meas_{item.data.meas_label}.delays.{attr_name})= {len(attr)} "
        )
len(Meas_s39.delays.tbss)= 21767 
len(Meas_s39.delays.idt)= 21766 
len(Meas_s39.delays.frame_alignment_delays)= 21767 
len(Meas_s39.delays.scheduling_delays)= 21767 
len(Meas_s39.delays.ran_delays)= 21767 
len(Meas_s39.delays.ran_delays_wo_frame_alignment_delay)= 21767 
len(Meas_s39.delays.ran_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.queueing_delays)= 21767 
len(Meas_s39.delays.queueing_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.segmentation_delay)= 21767 
len(Meas_s39.delays.segmentation_delays_wo_scheduling_delay)= 21767 
len(Meas_s39.delays.segments)= 21767 
len(Meas_s39.delays.retx_delays)= 21767 
len(Meas_s39.delays.mcss)= 21767 
len(Meas_s39.delays.packet_size)= 21767 
len(Meas_s39.delays.timestamps)= 21767 
In [52]:
diff = Meas_s39_40_s59s66.meas[1].delays.segmentation_delays_wo_scheduling_delay

neg_num=len([item for item in diff if item < 0 ])
print(f"{Meas_s39_40_s59s66.meas[1].meas_label}:{neg_num} negative values ")
s40:0 negative values 
In [53]:
df = Meas_s39_40_s59s66.meas[0].dataFrame(
    [
        "tbss",
        "segments",
        "packet_size",
        "segmentation_delays_wo_scheduling_delay"
    ],  # attrbutes name of Meas.delays
    [
        "TBS",
        "SegmentsNum",
        "PacketSize",
        "SegmentDelay(noSched)",
    ],  # labels to display (optional)
)
   TBS  SegmentsNum  PacketSize  SegmentDelay(noSched)
0  116            1          48               2.076864
1  116            1          48               2.111197
2  116            1          60               2.075911
3   24            2          52               9.627104
4  145            1          53               2.051115
./data/s39
Dataframe saved to ./data/s39\TBS_SegmentsNum_PacketSize_SegmentDelay(noSched).csv
TBS vs SegmentDelay¶
In [ ]:
for i in range(0, len(Meas_s39_40_s59s66.meas_labels)):
    print(f"{Meas_s39_40_s59s66.meas[i].meas_label}:")
    Meas_s39_40_s59s66.meas[i].plotTLCC(
    [
        "tbss",
        "segmentation_delays_wo_scheduling_delay",
    ],  # attrbutes name of Meas.delays
    ["TBS", "SegmentDelay(noSched)"],  # labels to display (optional)
)
s39:
No description has been provided for this image
s40:
No description has been provided for this image
s59:
No description has been provided for this image
s61:
No description has been provided for this image
s62:
No description has been provided for this image
s63:
No description has been provided for this image
s64:
No description has been provided for this image
s65:
No description has been provided for this image
s66:
No description has been provided for this image
s39 s40 s61
segmentation_delays_wo_scheduling_framealignment_delay not found
segmentation_delays_wo_scheduling_framealignment_delay not found
segmentation_delays_wo_scheduling_framealignment_delay not found
SegmentNum vs SegmentDelay: Should exclude s39, s64 and s65!¶
In [ ]:
for i in range(0, len(Meas_s39_40_s59s66.meas_labels)):
    print(f"{Meas_s39_40_s59s66.meas[i].meas_label}:")
    Meas_s39_40_s59s66.meas[i].plotTLCC(
        ["segments", "segmentation_delays_wo_scheduling_delay"],  # attrbutes name of Meas.delays
        ["SegmentsNumber", "SegmentDelay(noSched)"],  # labels to display (optional)
    )
s39:
No description has been provided for this image
s40:
No description has been provided for this image
s59:
No description has been provided for this image
s61:
No description has been provided for this image
s62:
No description has been provided for this image
s63:
No description has been provided for this image
s64:
No description has been provided for this image
s65:
No description has been provided for this image
s66:
No description has been provided for this image
s65 s64
segmentation_delays_wo_scheduling_framealignment_delay not found
segmentation_delays_wo_scheduling_framealignment_delay not found

8 "s40", "s61","s62","s63","s66"¶

In [56]:
Meas_s40_s616263_s66 = MultiMeas(meas_labels=["s40", "s61", "s62", "s63", "s66"])
RNTIs in packets of s40: ['9afe']
RNTIs in packets of s61: ['a431']
2024-12-19 16:01:54.355 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:01:54.606 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:01:54.841 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:01:54.843 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:01:55.328 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:01:55.482 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:01:55.689 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:01:55.690 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:01:56.284 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:01:56.526 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:01:56.821 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:01:56.822 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:01:59.640 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:01:59.755 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:01:59.904 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:01:59.905 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:00.399 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:00.721 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:01.053 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:01.055 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.006 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.007 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.335 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.337 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.720 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.721 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.723 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:02.725 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:03.767 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:03.768 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.387 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.388 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.899 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.900 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.903 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:04.905 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:05.673 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:05.772 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:05.880 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:05.882 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:07.337 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:07.512 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:07.709 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:07.711 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.015 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.089 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.183 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.184 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.374 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.448 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.532 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:02:08.533 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
RNTIs in packets of s62: ['a244']
2024-12-19 16:02:18.908 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:18.913 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:18.915 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:18.987 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:18.989 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.001 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.073 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.088 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.089 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.130 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.292 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.293 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.294 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.295 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.321 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.427 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.428 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.429 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.432 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.489 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.650 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.710 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:19.749 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.100 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.102 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.193 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.199 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.201 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.295 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.298 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.314 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.383 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.393 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.394 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.430 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.585 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.586 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.620 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.760 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.761 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:20.835 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.025 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.074 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.120 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.371 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.372 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.387 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.397 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.398 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.497 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.499 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.515 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.610 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.622 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.623 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.666 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.881 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.882 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:21.928 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.078 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.079 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.163 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.439 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.489 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.537 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.794 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:22.796 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.408 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.411 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.413 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.462 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.464 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.471 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.509 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.515 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.516 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.537 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.626 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.627 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.648 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.726 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.728 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.772 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.875 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.901 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:24.925 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.054 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.056 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.066 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.070 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.071 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.156 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.158 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.171 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.242 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.252 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.253 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.297 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.539 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.541 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.588 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.791 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.792 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:25.879 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.088 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.137 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.181 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.439 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.440 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.455 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.456 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.464 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.465 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.466 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.466 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.581 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.582 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.583 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.585 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.604 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.605 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.709 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.710 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.724 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.726 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.727 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.729 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.782 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:26.784 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.030 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.032 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:02:27.111 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.113 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.339 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.340 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:02:27.452 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.453 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.718 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.719 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.787 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.788 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.851 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:27.852 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.223 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.224 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.225 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.227 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.247 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.248 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.257 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.259 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.260 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.263 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.419 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.420 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.421 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.424 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.450 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.451 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.587 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.588 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.610 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.611 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.613 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.614 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.688 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.689 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.985 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:28.986 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:02:29.043 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.045 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.293 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.294 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:02:29.433 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.434 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.774 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.774 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.865 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.866 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.942 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:29.943 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.428 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.430 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.430 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.431 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.454 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.456 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.459 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.490 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.491 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.498 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.529 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.533 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.534 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.550 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.618 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.619 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.634 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.700 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.701 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.735 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.813 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.833 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.852 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.957 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:30.958 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.004 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.007 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.008 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.070 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.073 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.084 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.142 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.152 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.153 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.184 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.299 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.300 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.324 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.426 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.428 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.498 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.641 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.679 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.717 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.927 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.928 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.943 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.946 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.949 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.984 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.985 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:32.994 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.026 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.033 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.035 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.053 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.119 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.120 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.133 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.187 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.189 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.220 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.342 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.363 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.385 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.497 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.500 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.513 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.515 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.515 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.549 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.550 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.558 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.585 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.591 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.592 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.606 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.701 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.702 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.716 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.773 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.775 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.804 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.888 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.916 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:02:33.934 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:02:34.041 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:02:34.042 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
RNTIs in packets of s63: ['71f5']
2024-12-19 16:02:44.921 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.933 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.948 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.951 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.958 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.963 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.969 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.986 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.992 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:44.995 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.000 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.020 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.026 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.039 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.043 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.054 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.062 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.077 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.084 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.107 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.114 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.130 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.139 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.141 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.148 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.161 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.247 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.265 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.273 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.278 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.289 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.291 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.295 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.299 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.302 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.330 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.334 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.346 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.350 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.359 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.360 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.375 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.381 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.406 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.421 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.425 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.428 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.432 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.446 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.456 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.458 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.518 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.550 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.551 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.555 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.559 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.594 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.643 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.651 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.661 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.663 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.665 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.667 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.669 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.672 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.674 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.676 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.693 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.768 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.776 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.798 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.809 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.815 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.824 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.828 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.831 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.843 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.846 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.848 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.851 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.860 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.865 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.867 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.876 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.879 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.880 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.884 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.890 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.896 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.900 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.904 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.908 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.927 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:45.999 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.001 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.011 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.014 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.018 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.025 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.033 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.039 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.061 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.078 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.081 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.082 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.093 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.112 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.132 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.159 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.165 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.168 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.170 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.173 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.182 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.186 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.191 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.195 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.215 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.226 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.229 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.236 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.244 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.246 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.249 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.252 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.256 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.263 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.265 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.282 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.295 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.300 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.304 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.315 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.341 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.361 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.364 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.377 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.406 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.429 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.430 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.434 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.468 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.495 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.496 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.510 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.513 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.533 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.534 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.559 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.561 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.660 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.727 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.739 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.751 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.752 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.756 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.759 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.764 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.775 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.778 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.782 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.786 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.807 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.810 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.822 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.824 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.832 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.838 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.847 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.853 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.871 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.874 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.885 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.892 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.894 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.897 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.904 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.955 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.965 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.971 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.978 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.991 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.992 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.993 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:46.996 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.000 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.026 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.031 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.039 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.043 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.049 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.050 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.064 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.073 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.089 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.097 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.098 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.099 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.104 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.107 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.111 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.112 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.140 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.158 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.159 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.174 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.209 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.214 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.224 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.225 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.226 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.227 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.239 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.278 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.283 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.294 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.302 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.308 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.314 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.317 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.318 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.328 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.329 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.331 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.332 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.335 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.338 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.340 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.343 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.347 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.347 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.350 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.353 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.360 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.363 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.366 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.368 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.378 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.409 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.411 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.415 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.417 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.418 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.420 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.426 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.428 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.437 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.446 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.447 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.448 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.454 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.461 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.470 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.482 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.484 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.485 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.493 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.494 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.495 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.496 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.504 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.509 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.510 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.513 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.516 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.516 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.518 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.521 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.524 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.527 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.563 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.583 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.588 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.590 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.606 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.621 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.635 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.638 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.645 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.667 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.691 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.692 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.697 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.728 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.751 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.752 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.766 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.769 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.792 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.793 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.822 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.824 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.921 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.950 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.962 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.978 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.979 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.983 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.986 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:47.994 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.011 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.014 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.017 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.023 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.044 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.047 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.062 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.064 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.076 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.080 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.091 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.098 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.116 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.121 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.132 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.140 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.141 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.146 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.153 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.214 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.228 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.233 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.239 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.250 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.251 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.256 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.259 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.263 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.294 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.300 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.311 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.317 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.326 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.328 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.350 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.360 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.382 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.397 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.398 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.400 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.404 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.408 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.415 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.416 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.461 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.491 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.492 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.512 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.608 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.614 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.620 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.624 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.625 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.625 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.640 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.684 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.690 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.705 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.713 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.717 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.725 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.728 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.730 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.744 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.745 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.747 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.749 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.754 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.759 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.760 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.763 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.765 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.768 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.770 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.776 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.780 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.781 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.784 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.787 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.797 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.845 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.847 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.856 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.859 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.862 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.865 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.876 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.880 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.896 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.915 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.916 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.917 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.927 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.934 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.951 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.977 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.983 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.986 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:48.996 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.001 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.003 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.006 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.021 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.027 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.030 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.037 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.044 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.047 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.050 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.054 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.058 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.064 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.092 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.112 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.141 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.147 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.149 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.161 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.205 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.227 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.229 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.242 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.282 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.318 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.319 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.329 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.374 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.407 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.408 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.420 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.426 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.447 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.448 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.474 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.475 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:49.580 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.630 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.638 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.646 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.647 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.651 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.656 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.661 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.672 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.675 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.677 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.681 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.692 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.694 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.705 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.706 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.714 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.719 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.728 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.732 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.745 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.749 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.758 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.763 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.764 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.766 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.772 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.800 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.809 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.813 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.815 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.822 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.824 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.826 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.828 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.830 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.849 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.854 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.862 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.866 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.874 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.875 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.885 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.894 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.909 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.919 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.923 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.924 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.926 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.928 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.934 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.935 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.961 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.981 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:51.983 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.000 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.031 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.035 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.041 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.042 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.044 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.046 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.056 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.092 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.096 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.108 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.116 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.119 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.124 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.126 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.127 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.133 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.134 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.135 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.140 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.142 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.144 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.145 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.149 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.150 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.151 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.154 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.156 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.160 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.161 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.163 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.166 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.175 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.206 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.208 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.213 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.216 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.217 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.222 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.226 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.229 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.238 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.247 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.248 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.250 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.257 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.264 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.275 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.287 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.292 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.294 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.298 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.299 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.301 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.303 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.312 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.316 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.319 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.325 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.329 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.330 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.331 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.334 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.338 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.341 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.343 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.350 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.359 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.363 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.364 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.370 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.388 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.396 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.398 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.403 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.418 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.441 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.442 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.445 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.468 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.495 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.497 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.508 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.510 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.527 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.528 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.543 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.545 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.620 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.637 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.647 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.659 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.661 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.664 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.666 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.673 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.684 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.687 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.690 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.692 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.708 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.710 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.721 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.723 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.731 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.734 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.744 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.748 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.763 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.766 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.778 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.784 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.788 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.793 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.798 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.890 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.912 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.918 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.924 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.933 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.936 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.939 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.941 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.945 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.971 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.977 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.984 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.991 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.998 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:52.998 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.016 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.027 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.047 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.060 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.061 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.062 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.064 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.065 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.076 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.077 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.111 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.134 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.136 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.158 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.197 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.201 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.208 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.209 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.210 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.211 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.222 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.253 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.257 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.266 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.274 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.276 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.280 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.282 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.283 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.291 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.292 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.293 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.293 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.295 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.298 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.298 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.301 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.301 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.302 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.305 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.307 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.311 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.313 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.315 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.316 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.326 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.391 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.392 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.396 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.400 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.401 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.406 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.411 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.413 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.424 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.434 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.437 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.438 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.444 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.452 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.466 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.481 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.487 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.489 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.495 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.497 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.498 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.498 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.509 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.515 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.516 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.521 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.525 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.529 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.531 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.532 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.535 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.539 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.548 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.556 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.559 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.561 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.566 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.584 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.602 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.606 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.612 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.635 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.657 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.658 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.661 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.692 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.712 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.713 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.723 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.725 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.742 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.742 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.762 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.763 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.870 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.900 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.904 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.919 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.921 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.937 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.939 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.940 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.943 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.948 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.949 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.955 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.959 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.976 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:53.989 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.013 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.014 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.017 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.018 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.023 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.024 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.026 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.028 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.053 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.056 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.058 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.059 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.074 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.074 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.076 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.077 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.088 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.089 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.093 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.094 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.106 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.107 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.114 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.116 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.136 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.138 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.141 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.141 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.155 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.157 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.164 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.165 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.166 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.166 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.173 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.192 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.213 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.214 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.294 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.294 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.309 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.310 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.316 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.317 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.322 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.323 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.336 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.338 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.338 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.340 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.341 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.342 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.344 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.345 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.350 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.351 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.390 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.391 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.399 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.400 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.414 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.415 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.424 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.426 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.437 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.439 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.441 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.441 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.465 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.467 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.479 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.481 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.514 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.515 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.548 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.550 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.551 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.554 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.557 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.559 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.561 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.563 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.566 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.569 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.584 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.586 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.587 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.588 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.633 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.634 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.666 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.667 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:02:54.702 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.704 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.768 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.771 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.777 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.778 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.785 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.788 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.789 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.791 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:02:54.807 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.808 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.858 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.859 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.864 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.865 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.882 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.883 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.894 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.895 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.898 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.900 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.907 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.909 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.911 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.912 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.913 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.914 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.934 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.951 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.956 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.957 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.959 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.960 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.961 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.962 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.965 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.967 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.977 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.980 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.981 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.982 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.986 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.989 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.991 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.992 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.995 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.996 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:54.998 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.000 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.005 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.007 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.011 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.013 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.016 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.018 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.023 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.024 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.027 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.028 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.044 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.045 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.138 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.140 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.142 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.144 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.155 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.155 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.159 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.160 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.161 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.161 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.165 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.165 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.170 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.171 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.174 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.175 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.187 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.189 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.201 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.203 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.205 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.205 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.206 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.208 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.212 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.213 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.221 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.223 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.240 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.241 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.262 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.263 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.267 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.268 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:02:55.277 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.278 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.280 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.280 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.282 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.283 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.284 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.284 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.295 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.297 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.305 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.322 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.324 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.338 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.346 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.348 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.354 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.356 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.357 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.359 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.363 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.364 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.366 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.370 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.372 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.373 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.377 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.380 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.381 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.381 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.396 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.397 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.412 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.413 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.417 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.417 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.420 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.421 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.430 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.431 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.458 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.461 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.522 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.523 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.525 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.526 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.535 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.537 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.577 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.578 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.620 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.621 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.623 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.624 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.632 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.634 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.697 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.698 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.740 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.741 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.742 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.744 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.760 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.761 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.763 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.764 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.791 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.792 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.793 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.793 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.824 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.825 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.826 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.827 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.998 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:55.999 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.043 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.043 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.063 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.064 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.094 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.096 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.098 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.099 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.105 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.105 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.111 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.114 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.123 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.125 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.163 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.165 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.174 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.175 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.184 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.188 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.195 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.197 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.263 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.265 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.271 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.275 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.297 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.299 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.304 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.304 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.321 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.322 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.327 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.328 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.343 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.345 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.355 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.356 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.392 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.393 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.400 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.400 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.431 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.432 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.445 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.446 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.449 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.450 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.461 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.462 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.479 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.480 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.630 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.631 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.658 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.660 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.669 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.673 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.680 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.682 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.715 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.717 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.721 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.722 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.727 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.728 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.738 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.740 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.755 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.757 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.825 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.826 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.837 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.838 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.854 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.855 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.861 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.863 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.876 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.877 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.878 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.878 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.956 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.958 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.972 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:56.974 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.016 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.017 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.042 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.043 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.044 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.045 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.048 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.049 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.053 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.054 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.056 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.057 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.069 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.072 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.073 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.075 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.137 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.138 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.181 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.182 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:02:57.216 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.218 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.328 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.331 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.340 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.341 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.349 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.351 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.353 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.355 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:02:57.377 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.377 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.448 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.449 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.455 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.456 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.477 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.478 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.489 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.491 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.496 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.497 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.505 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.507 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.511 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.512 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.513 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.514 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.528 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.529 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.530 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.531 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.533 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.533 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.536 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.537 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.541 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.586 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.592 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.593 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.595 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.596 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.604 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.610 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.612 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.614 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.614 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.616 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.619 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.621 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.627 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.628 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.634 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.634 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.637 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.638 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.643 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.644 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.645 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.646 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.660 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.661 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.726 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.727 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.729 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.730 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.737 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.737 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.741 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.742 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.743 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.744 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.748 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.748 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.756 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.758 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.760 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.761 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.779 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.781 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.803 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.804 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.808 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.811 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.838 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.841 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.855 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.857 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.877 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.878 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.903 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.904 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.934 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.937 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.941 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.942 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:02:57.950 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.950 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.954 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.955 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.957 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.958 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.959 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.960 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.973 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.974 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.981 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.982 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.983 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.986 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.992 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:57.993 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.000 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.003 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.005 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.007 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.011 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.014 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.020 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.022 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.024 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.026 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.033 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.036 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.043 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.049 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.100 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.102 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.115 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.116 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.122 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.124 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.125 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.126 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.136 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.137 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.172 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.174 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.200 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.200 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.203 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.204 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.216 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.216 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.261 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.262 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.304 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.305 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.306 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.307 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.315 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.315 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.406 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.408 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.453 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.454 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.457 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.458 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.477 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.478 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.483 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.485 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.519 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.520 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.522 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.524 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.560 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.561 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.562 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.563 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.732 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.733 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.780 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.784 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.790 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.791 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.792 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.794 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.797 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.831 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.833 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.835 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.840 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.849 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.852 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.857 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.858 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.862 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.864 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.870 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.875 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.883 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.887 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.895 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.898 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.899 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.902 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.907 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.927 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.931 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.933 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.936 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.940 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.941 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.942 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.943 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.944 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.955 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.958 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.961 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.963 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.966 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.967 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.973 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.976 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:02:58.986 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.021 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.022 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.024 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.029 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.033 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.037 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.039 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.053 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.063 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.064 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.074 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.091 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.094 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.096 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.096 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.097 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.098 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.105 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.118 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.122 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.129 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.131 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.133 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.136 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.139 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.142 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.147 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.149 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.150 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.153 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.155 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.158 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.160 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.162 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.163 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.164 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.167 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.172 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.175 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.180 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.197 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.211 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.216 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.242 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.243 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.246 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.247 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.248 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.249 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.253 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.254 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.259 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.264 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.264 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.265 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.268 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.272 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.277 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.282 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.283 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.283 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.286 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.288 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.290 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.291 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.293 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.295 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.296 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.298 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.299 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.300 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.301 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.302 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.303 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.306 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.307 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.311 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.316 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.342 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.348 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.352 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.363 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.372 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.374 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.378 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.388 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.397 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.397 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.399 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.413 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.422 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.424 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.428 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.429 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.435 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.437 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.444 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.445 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:02:59.481 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.231 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.237 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.246 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.247 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.250 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.253 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.257 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.264 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.267 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.269 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.272 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.282 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.283 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.292 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.293 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.299 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.303 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.310 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.313 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.324 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.328 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.336 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.339 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.340 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.342 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.350 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.415 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.427 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.431 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.433 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.440 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.442 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.445 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.447 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.451 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.476 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.479 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.489 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.497 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.507 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.510 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.528 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.538 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.550 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.558 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.559 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.561 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.562 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.563 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.566 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.568 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.592 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.608 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.610 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.635 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.686 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.691 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.695 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.696 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.698 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.698 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.709 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.735 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.739 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.747 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.754 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.758 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.762 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.765 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.766 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.773 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.774 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.777 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.778 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.780 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.782 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.783 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.787 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.789 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.792 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.793 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.796 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.801 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.804 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.807 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.811 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.822 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.858 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.860 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.862 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.865 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.865 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.867 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.870 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.871 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.878 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.885 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.886 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.887 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.911 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.928 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.945 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.957 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.960 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.962 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.964 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.966 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.967 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.968 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.976 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.979 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.980 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.985 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.988 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.989 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.992 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.994 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.995 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:03:00.997 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.000 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.007 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.015 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.019 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.020 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.025 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.065 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.087 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.090 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.096 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.116 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.131 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.132 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.136 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.155 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.172 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.174 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.182 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.184 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.198 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.199 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.221 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.222 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.294 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.313 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.319 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.323 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.324 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.326 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.327 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.330 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.333 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.335 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.336 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.338 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.343 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.346 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.350 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.358 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.382 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.389 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.395 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.399 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.423 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.435 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.444 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.449 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.449 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.451 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.455 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.476 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.481 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.482 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.485 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.489 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.491 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.492 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.493 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.495 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.506 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.510 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.513 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.515 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.518 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.520 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.525 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.529 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.536 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.541 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.542 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.543 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.554 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.578 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.583 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.584 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.617 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.629 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.630 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.640 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.655 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.658 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.661 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.662 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.663 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.663 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.670 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.685 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.687 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.695 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.698 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.701 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.703 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.706 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.709 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.713 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.714 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.714 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.716 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.718 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.721 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.723 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.725 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.726 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.727 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.730 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.731 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.733 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.734 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.738 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.740 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.747 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.761 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.762 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.764 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.766 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.768 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.769 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.772 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.773 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.778 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.787 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.793 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.799 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.814 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.819 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.825 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.831 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.837 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.838 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.840 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.843 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.845 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.846 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.851 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.854 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.855 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.856 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.861 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.862 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.863 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.866 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.866 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.870 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.871 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.877 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.881 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.886 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.887 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.890 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.902 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.906 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.909 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.912 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.920 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.929 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.931 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.932 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.948 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.970 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.975 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.982 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.985 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.993 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:01.997 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.007 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.008 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.041 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.056 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.061 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.066 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.067 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.069 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.071 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.072 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.076 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.078 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.080 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.081 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.088 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.089 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.093 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.098 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.129 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.133 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.139 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.142 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.154 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.156 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.161 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.163 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.164 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.166 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.169 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.189 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.197 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.199 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.203 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.209 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.211 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.211 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.213 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.215 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.229 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.231 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.236 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.239 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.241 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.242 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.247 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.249 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.257 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.263 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.264 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.265 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.269 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.270 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.274 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.276 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.287 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.294 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.295 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.305 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.350 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.352 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.354 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.355 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.355 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.356 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.360 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.370 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.371 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.376 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.379 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.380 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.382 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.383 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.385 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.388 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.389 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.391 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.392 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.394 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.396 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.396 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.398 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.398 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.399 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.401 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.403 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.406 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.409 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.411 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.412 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.415 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.439 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.452 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.457 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.460 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.462 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.463 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.467 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.470 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.476 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.484 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.490 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.495 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.498 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.503 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.508 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.513 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.514 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.515 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.518 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.520 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.520 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.521 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.524 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.526 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.527 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.530 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.531 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.532 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.535 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.536 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.538 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.539 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.541 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.544 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.546 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.549 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.552 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.560 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.590 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.592 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.597 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.610 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.619 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.620 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.621 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.632 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.641 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.642 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.645 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.647 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.652 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.652 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.660 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.662 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:03:02.695 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
RNTIs in packets of s66: ['71b4']
2024-12-19 16:03:10.440 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.441 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.449 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.452 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.762 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.764 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.764 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.767 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:10.934 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.006 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.008 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.009 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.011 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.012 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.012 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.014 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.020 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.022 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.023 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.233 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.236 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.241 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.252 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.436 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.437 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.438 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.439 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.495 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.495 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.496 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.496 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.497 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.498 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.500 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.502 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.503 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.503 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.569 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.570 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.571 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.572 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.622 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.623 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.747 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.749 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.887 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.955 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.956 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.957 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.959 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.960 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:11.960 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.172 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.173 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.320 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.321 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.385 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.386 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.387 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.387 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.390 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.390 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.455 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.456 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.481 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.486 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.623 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.623 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.771 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.857 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.858 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.859 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.859 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.861 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:12.861 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.121 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.122 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.320 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.323 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.488 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.489 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.490 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.490 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.491 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.492 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.590 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:13.591 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:15.989 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:15.990 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.130 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.135 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.255 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.311 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.312 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.315 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.319 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.321 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.322 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.522 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.524 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.673 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.674 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.733 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.736 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.737 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.739 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.741 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.742 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.814 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.816 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.856 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:16.857 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.073 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.074 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.372 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.474 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.474 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.476 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.477 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.477 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.478 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.766 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.767 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.990 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:17.991 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.095 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.096 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.096 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.097 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.097 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.101 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.203 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.204 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.236 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.237 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:03:18.426 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.427 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:03:18.636 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.650 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.791 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.792 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.793 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.793 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.794 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.795 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.796 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:18.798 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:03:19.143 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.144 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:03:19.452 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.453 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:03:19.585 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.586 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.587 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.588 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.589 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.589 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.590 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.591 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:03:19.711 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.711 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:03:19.766 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:19.768 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:03:20.068 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.068 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:03:20.362 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.362 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.520 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.521 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.521 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.522 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.523 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.527 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.559 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:20.560 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:03:21.022 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.023 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:03:21.461 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.462 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:03:21.690 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.691 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.692 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.693 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.694 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.695 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.696 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.700 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:03:21.954 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.955 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:03:21.972 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:21.973 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.052 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.053 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.112 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.146 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.147 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.151 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.152 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.152 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.155 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.249 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.251 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.336 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.337 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.371 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.372 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.373 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.373 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.373 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.375 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.408 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:22.409 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.225 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.225 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.324 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.324 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.448 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.503 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.503 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.504 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.505 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.505 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.506 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.653 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.654 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.800 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.801 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.865 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.866 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.867 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.868 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.869 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.870 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.959 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.960 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.978 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:23.979 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.028 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.029 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.083 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.110 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.111 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.111 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.113 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.114 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.117 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.204 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.205 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.286 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.286 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.318 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.319 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.319 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.320 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.321 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.322 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.350 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.351 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.361 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.362 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.449 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.450 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.495 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.523 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.524 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.525 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.526 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.526 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.528 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.606 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.607 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.686 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.687 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.746 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.750 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.752 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.754 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.755 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.756 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.794 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:03:24.796 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
Export csv¶
In [57]:
Meas_s40_s616263_s66.dataFrame(
    [
        "tbss",
        "segments",
        "segmentation_delays_wo_scheduling_delay",
    ],  # attrbutes name of Meas.delays
    [
        "TBS",
        "SegmentsNum",
        "SegmentDelay(noSched)",
    ],  # labels to display (optional)
)
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            4              11.732101
1  116            1               2.104998
2   24            4              12.003183
3   24            3               9.509802
4   24            1               9.574890
./data/csv/
Dataframe saved to ./data/csv/s40_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.579897
1   24            3               9.560108
2   24            1               9.532213
3   24            3               9.479761
4   24            2              12.001991
Dataframe saved to ./data/csv/s61_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            3               9.410858
1   24            3               9.418011
2   24            4              11.901855
3   24            4              11.814833
4   24            3               9.358883
Dataframe saved to ./data/csv/s62_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.531975
1   24            3               9.627819
2   24            1               9.535789
3   24            3               9.494066
4   24            2              11.957884
Dataframe saved to ./data/csv/s63_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.522915
1   24            3               9.600878
2   24            2              12.004852
3   24            3               9.702682
4   24            1               9.557724
Dataframe saved to ./data/csv/s66_TBS_SegmentsNum_SegmentDelay(noSched).csv
In [58]:
Meas_s40_s616263_s66.plotCCDF(
    ["segmentation_delays_wo_scheduling_delay"],
    ["s40", "s61", "s62", "s63", "s66"],
)
No description has been provided for this image
In [59]:
Meas_s40_s616263_s66.plotCCDF(
    ["segments"],
    ["s40", "s61", "s62", "s63", "s66"],
)
No description has been provided for this image
In [60]:
for i in range(0,5):
    x = Meas_s40_s616263_s66.meas[i].delays.segments
    y = Meas_s40_s616263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    plt.scatter(x,y)
    plt.xlabel("Segments Number")
    plt.ylabel("segmentation_delay")
    plt.title(f"{Meas_s40_s616263_s66.meas[i].meas_label}")
No description has been provided for this image
In [61]:
fig = plt.figure(figsize=(8, 6))
# 创建图形和 3D 子图
ax = fig.add_subplot(111, projection="3d")
c=["r","g","b","orange","cyan","m"]
for i in range(0, 5):
    x = Meas_s40_s616263_s66.meas[i].delays.segments
    y = Meas_s40_s616263_s66.meas[i].delays.tbss
    z = Meas_s40_s616263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    # 绘制 3D 散点图
    ax.scatter(x, y, z, c=c[i], marker="o", alpha=0.8)
    # 显示图形

# 设置坐标轴标签
ax.set_xlabel("segments")
ax.set_ylabel("TBS")
ax.set_zlabel("segmentation_delay")

plt.show()
No description has been provided for this image

9 "s40", "s59", "s61","s62","s63","s66"¶

In [62]:
Meas_s40_s59_s616263_s66 = MultiMeas(meas_labels=["s40", "s59", "s61", "s62", "s63", "s66"])
RNTIs in packets of s40: ['9afe']
RNTIs in packets of s59: ['7b9c']
2024-12-19 16:05:40.136 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.189 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.190 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.191 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.191 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.219 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.220 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.221 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.222 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.223 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.224 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.227 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.227 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.243 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.244 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.244 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.274 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.286 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.656 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.657 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.658 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.658 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.659 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.661 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.661 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.662 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.755 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.814 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.815 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.844 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.845 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.845 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.846 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.863 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.864 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.865 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.893 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:40.904 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.279 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.280 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.280 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.281 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.365 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.446 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.447 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.485 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.485 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.486 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.488 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.511 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.512 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.513 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.550 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:41.567 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:42.019 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:42.020 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:42.020 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:42.021 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.777 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.821 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.821 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.844 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.846 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.846 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.847 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.858 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.858 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.859 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.880 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:43.889 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.153 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.153 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.154 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.156 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.227 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.324 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.325 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.370 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.371 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.371 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.372 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.398 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.400 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.401 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.462 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:44.489 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.150 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.151 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.151 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.152 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.278 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.279 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.407 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.407 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
For packet(id=33786), tx_delay == None!
2024-12-19 16:05:45.471 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.472 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.473 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.474 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
For packet(id=31778), tx_delay == None!
2024-12-19 16:05:45.508 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.509 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.510 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.510 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.513 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.513 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.575 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.576 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.600 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:45.601 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.384 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.384 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.385 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.386 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
For packet(id=2732), tx_delay == None!
2024-12-19 16:05:46.572 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.572 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.771 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.772 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
For packet(id=33786), tx_delay == None!
2024-12-19 16:05:46.882 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.884 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.884 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.886 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
For packet(id=31778), tx_delay == None!
2024-12-19 16:05:46.933 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.934 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.935 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.936 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.936 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:46.937 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:47.064 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:47.065 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:47.102 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:47.103 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.388 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.389 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.390 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.391 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
For packet(id=2732), tx_delay == None!
2024-12-19 16:05:48.561 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.597 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.597 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.617 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.618 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.619 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.619 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.630 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.631 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.633 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.651 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.659 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.876 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.876 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.877 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:48.878 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.626 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.696 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.697 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.738 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.739 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.739 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.740 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.762 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.764 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.765 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.802 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:49.819 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.238 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.238 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.239 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.241 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.304 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.337 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.338 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.354 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.356 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.357 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.358 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.366 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.367 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.367 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.383 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.389 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.571 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.572 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.573 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.574 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.616 | ERROR    | decomp:get_tx_delay:246 - Packet 37991 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.648 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.649 | ERROR    | decomp:get_tx_delay:246 - Packet 33786 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.665 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.666 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.667 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.667 | ERROR    | decomp:get_tx_delay:246 - Packet 31778 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.678 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.680 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.680 | ERROR    | decomp:get_tx_delay:246 - Packet 30777 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.699 | ERROR    | decomp:get_tx_delay:246 - Packet 28794 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.707 | ERROR    | decomp:get_tx_delay:246 - Packet 28022 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.924 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.925 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.926 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
2024-12-19 16:05:50.928 | ERROR    | decomp:get_tx_delay:246 - Packet 2732 phy.in_t or phy.in_t not present
RNTIs in packets of s61: ['a431']
2024-12-19 16:05:58.681 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:05:58.898 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.045 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.047 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.386 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.507 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.657 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:05:59.658 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:00.024 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:00.233 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:00.450 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:00.452 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:02.600 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:02.690 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:02.798 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:02.800 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:03.165 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:03.357 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:03.582 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:03.583 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.184 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.185 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.458 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.459 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.794 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.794 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.796 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:04.796 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:05.703 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:05.704 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.081 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.082 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.654 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.656 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.659 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:06.662 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:07.269 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:07.341 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:07.433 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:07.435 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:08.482 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:08.782 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.136 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.137 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.412 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.477 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.549 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.550 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.722 | ERROR    | decomp:get_tx_delay:246 - Packet 29139 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.785 | ERROR    | decomp:get_tx_delay:246 - Packet 20788 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.856 | ERROR    | decomp:get_tx_delay:246 - Packet 11082 phy.in_t or phy.in_t not present
2024-12-19 16:06:09.857 | ERROR    | decomp:get_tx_delay:246 - Packet 11062 phy.in_t or phy.in_t not present
RNTIs in packets of s62: ['a244']
2024-12-19 16:06:18.518 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.522 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.522 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.566 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.567 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.575 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.636 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.646 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.647 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.692 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.793 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.794 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.795 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.795 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.813 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.888 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.888 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.890 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.891 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:18.929 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.026 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.052 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.073 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.209 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.212 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.250 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.252 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.253 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.296 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.297 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.303 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.340 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.347 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.348 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.367 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.449 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.450 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.469 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.546 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.547 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.588 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.684 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.712 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.734 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.870 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.871 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.882 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.885 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.886 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.939 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.939 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.947 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:19.997 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.006 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.007 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.032 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.135 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.136 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.157 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.248 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.249 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.299 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.422 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.453 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.482 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.647 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:20.647 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:21.969 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:21.971 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:21.971 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.005 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.006 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.012 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.039 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.043 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.045 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.058 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.117 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.118 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.130 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.183 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.184 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.222 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.302 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.320 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.337 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.429 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.430 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.438 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.442 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.442 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.510 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.511 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.521 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.577 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.586 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.587 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.622 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.750 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.750 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.780 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.895 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.896 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:22.959 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.103 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.141 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.175 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.369 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.370 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.380 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.381 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.386 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.388 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.389 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.390 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.474 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.475 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.476 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.477 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.490 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.491 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.565 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.566 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.579 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.579 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.580 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.580 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.625 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.626 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.795 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.796 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:06:23.831 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.832 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.988 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:23.989 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:06:24.076 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.078 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.330 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.331 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.382 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.383 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.430 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.431 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.719 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.720 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.722 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.722 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.738 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.738 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.745 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.746 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.746 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.747 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.881 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.882 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.884 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.886 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.908 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:24.909 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.023 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.024 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.039 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.039 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.040 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.040 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.097 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.098 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.355 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.357 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:06:25.409 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.410 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.641 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.643 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:06:25.767 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:25.768 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.062 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.063 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.137 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.138 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.204 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.205 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.603 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.604 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.605 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.608 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.629 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.632 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.633 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.662 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.664 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.670 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.693 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.698 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.698 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.741 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.803 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.803 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.813 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.860 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.862 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.892 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.947 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.963 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:26.976 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.049 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.049 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.738 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.740 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.741 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.784 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.785 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.792 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.832 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.837 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.838 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.861 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.946 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.947 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:27.968 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.046 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.047 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.088 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.191 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.215 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.242 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.381 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.382 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.392 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.395 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.395 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.416 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.416 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.422 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.439 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.444 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.445 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.456 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.499 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.500 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.515 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.553 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.554 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.576 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.627 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.643 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.660 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.739 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.742 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.754 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.758 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.759 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.785 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.786 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.791 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.810 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.815 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.816 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.828 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.891 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.892 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.905 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.945 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.946 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:06:28.992 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:06:29.055 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:06:29.069 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:06:29.084 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:06:29.158 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:06:29.160 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
RNTIs in packets of s63: ['71f5']
2024-12-19 16:06:37.203 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.212 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.220 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.222 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.225 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.227 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.233 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.240 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.242 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.245 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.246 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.261 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.263 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.271 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.274 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.284 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.291 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.314 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.336 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.362 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.373 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.392 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.402 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.405 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.412 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.421 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.474 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.486 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.492 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.496 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.507 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.508 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.511 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.514 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.519 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.544 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.550 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.560 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.563 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.573 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.574 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.593 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.599 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.620 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.630 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.631 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.634 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.636 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.637 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.643 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.644 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.675 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.695 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.696 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.697 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.698 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.717 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.753 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.758 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.762 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.763 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.764 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.766 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.767 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.769 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.770 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.772 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.781 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.812 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.814 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.825 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.830 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.832 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.839 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.842 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.843 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.853 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.855 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.856 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.858 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.859 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.861 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.863 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.867 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.868 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.869 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.872 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.902 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.912 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.915 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.918 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.921 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.933 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.971 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.973 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.978 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.981 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.983 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.985 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.990 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:37.994 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.004 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.023 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.025 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.028 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.035 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.046 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.061 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.081 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.085 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.087 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.090 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.091 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.098 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.102 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.107 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.110 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.122 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.128 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.130 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.135 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.139 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.141 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.145 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.148 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.152 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.159 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.162 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.175 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.190 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.197 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.199 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.211 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.238 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.263 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.268 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.279 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.314 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.339 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.340 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.348 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.386 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.412 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.414 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.425 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.427 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.444 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.445 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.465 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.467 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.609 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.692 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.704 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.719 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.721 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.729 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.733 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.740 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.754 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.759 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.762 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.766 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.787 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.790 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.803 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.806 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.816 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.823 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.833 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.840 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.857 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.860 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.872 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.878 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.880 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.885 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.892 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.946 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.960 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.964 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.970 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.982 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.984 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.989 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.993 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:38.997 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.028 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.033 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.043 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.047 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.054 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.056 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.072 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.079 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.098 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.110 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.111 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.112 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.114 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.116 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.121 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.122 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.190 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.218 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.220 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.238 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.278 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.282 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.287 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.288 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.289 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.291 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.300 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.330 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.335 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.344 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.350 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.353 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.358 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.361 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.362 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.370 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.372 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.373 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.375 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.377 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.380 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.381 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.384 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.385 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.386 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.387 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.389 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.394 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.395 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.397 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.398 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.406 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.434 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.436 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.440 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.443 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.444 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.446 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.450 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.453 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.462 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.471 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.472 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.473 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.476 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.482 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.491 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.505 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.507 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.508 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.512 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.514 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.515 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.516 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.523 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.527 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.528 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.531 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.534 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.536 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.538 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.539 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.540 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.543 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.544 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.554 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.564 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.568 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.569 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.575 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.590 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.634 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.637 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.649 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.679 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.708 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.709 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.715 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.745 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.770 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.771 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.781 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.786 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.804 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.805 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.825 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.827 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.914 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.943 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.955 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.970 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.973 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.977 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.980 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:39.988 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.002 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.006 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.010 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.012 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.033 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.037 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.048 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.053 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.063 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.069 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.082 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.089 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.107 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.112 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.124 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.130 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.132 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.137 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.143 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.202 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.215 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.220 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.243 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.276 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.281 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.285 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.289 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.294 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.326 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.332 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.342 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.347 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.359 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.360 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.379 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.388 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.410 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.423 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.424 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.426 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.428 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.431 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.439 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.440 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.477 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.505 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.506 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.524 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.579 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.584 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.591 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.592 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.593 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.594 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.608 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.644 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.647 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.661 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.672 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.677 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.688 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.698 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.700 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.718 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.720 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.722 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.724 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.727 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.732 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.740 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.748 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.750 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.753 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.756 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.760 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.768 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.770 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.775 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.778 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.791 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.837 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.839 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.847 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.852 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.854 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.859 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.864 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.869 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.883 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.894 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.895 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.896 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.905 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.911 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.925 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.941 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.946 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.947 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.953 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.956 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.957 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.958 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.969 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.975 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.977 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.980 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.986 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.988 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.993 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.995 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:40.996 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.001 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.004 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.017 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.029 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.038 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.040 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.050 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.085 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.104 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.107 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.156 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.209 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.240 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.242 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.247 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.293 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.329 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.330 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.346 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.349 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.377 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.379 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.408 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.409 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:41.537 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.710 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.716 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.724 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.725 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.727 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.730 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.734 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.742 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.744 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.747 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.749 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.759 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.761 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.768 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.770 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.776 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.778 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.786 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.790 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.799 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.802 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.808 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.811 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.812 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.816 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.820 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.853 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.861 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.865 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.867 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.874 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.875 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.876 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.879 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.884 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.919 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.926 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.936 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.942 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.957 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.959 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.976 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:43.982 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.002 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.017 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.018 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.020 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.021 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.024 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.028 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.031 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.068 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.095 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.098 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.120 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.170 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.176 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.182 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.183 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.185 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.188 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.200 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.242 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.246 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.259 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.267 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.271 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.278 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.283 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.285 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.293 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.296 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.301 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.302 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.306 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.311 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.321 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.337 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.342 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.343 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.345 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.348 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.353 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.359 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.362 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.365 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.377 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.424 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.426 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.434 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.439 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.441 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.444 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.450 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.453 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.464 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.474 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.475 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.476 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.482 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.490 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.501 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.516 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.519 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.520 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.523 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.526 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.527 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.528 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.537 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.542 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.543 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.547 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.551 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.552 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.554 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.556 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.559 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.562 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.564 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.573 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.580 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.585 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.587 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.593 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.619 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.643 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.646 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.658 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.701 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.733 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.736 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.742 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.770 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.796 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.799 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.809 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.811 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.826 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.827 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.848 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.849 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.943 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.974 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:44.992 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.015 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.018 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.024 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.028 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.040 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.061 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.066 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.071 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.075 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.111 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.116 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.134 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.141 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.155 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.161 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.175 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.185 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.208 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.214 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.234 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.242 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.244 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.249 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.257 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.362 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.386 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.473 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.484 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.514 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.518 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.522 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.528 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.537 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.615 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.628 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.656 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.670 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.689 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.691 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.734 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.748 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.791 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.815 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.816 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.819 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.822 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.827 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.838 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.839 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.903 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.946 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.949 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:45.990 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.093 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.104 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.114 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.116 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.117 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.119 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.211 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.298 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.305 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.332 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.345 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.351 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.360 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.367 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.370 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.390 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.392 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.394 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.396 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.401 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.406 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.410 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.416 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.418 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.422 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.426 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.432 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.443 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.447 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.454 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.459 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.490 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.613 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.619 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.630 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.639 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.644 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.652 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.749 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.756 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.790 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.824 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.827 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.828 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.840 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.857 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.885 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.921 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.928 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.929 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.939 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.944 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.946 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.949 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.974 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.986 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:46.991 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.001 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.009 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.011 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.017 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.022 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.024 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.031 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.035 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.056 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.077 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.088 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.091 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.106 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.167 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.229 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.237 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.250 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.316 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.368 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.370 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.379 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.451 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.512 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.514 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.537 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.541 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.582 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.583 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.634 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.635 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.806 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.867 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.868 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.896 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.897 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.930 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.933 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.936 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.939 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.949 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.951 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.958 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.959 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.975 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:47.978 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.009 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.011 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.019 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.021 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.026 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.028 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.035 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.038 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.081 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.083 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.089 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.090 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.116 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.118 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.122 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.124 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.145 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.147 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.157 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.159 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.186 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.188 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.199 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.201 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.304 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.306 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.312 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.313 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.345 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.346 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.365 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.366 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.368 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.371 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.377 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.378 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.391 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.392 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.519 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.520 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.544 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.545 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.555 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.556 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.566 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.568 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.598 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.599 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.601 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.603 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.606 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.608 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.613 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.615 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.629 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.633 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.722 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.724 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.736 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.737 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.761 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.763 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.775 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.776 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.796 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.798 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.800 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.801 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.837 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.838 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.854 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.856 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.898 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.900 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.925 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.926 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.928 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.928 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.933 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.935 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.940 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.943 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.945 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.947 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.977 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.978 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.981 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:48.984 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.079 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.081 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.135 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.138 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:06:49.184 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.186 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.289 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.291 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.301 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.303 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.316 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.318 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.319 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.320 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:06:49.343 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.345 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.425 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.426 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.434 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.436 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.461 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.462 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.477 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.479 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.487 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.488 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.501 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.504 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.509 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.511 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.513 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.515 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.562 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.564 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.566 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.569 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.578 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.579 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.583 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.585 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.599 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.601 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.607 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.608 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.611 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.613 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.620 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.621 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.624 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.625 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.626 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.627 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.631 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.635 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.639 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.641 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.649 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.650 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.654 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.656 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.661 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.663 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.669 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.672 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.693 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.694 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.783 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.785 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.789 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.791 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.805 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.806 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.812 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.814 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.816 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.823 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.838 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.842 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.860 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.862 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.869 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.872 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.918 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.920 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.960 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.962 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.963 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.966 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.969 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.972 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.988 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:49.990 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.011 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.012 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.039 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.040 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.073 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.074 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.081 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.084 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:06:50.095 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.098 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.102 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.105 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.107 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.108 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.111 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.113 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.131 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.132 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.141 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.142 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.144 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.150 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.174 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.177 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.189 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.191 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.193 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.195 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.202 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.205 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.210 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.214 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.216 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.218 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.226 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.228 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.232 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.235 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.279 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.281 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.312 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.313 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.324 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.325 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.327 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.328 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.349 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.351 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.398 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.400 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.436 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.438 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.442 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.443 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.461 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.462 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.523 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.524 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.573 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.574 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.575 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.577 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.587 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.588 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.687 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.689 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.740 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.740 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.741 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.742 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.765 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.766 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.772 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.773 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.829 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.831 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.832 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.834 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.890 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.892 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.893 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:50.896 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.093 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.094 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.154 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.155 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.187 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.188 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.222 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.223 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.227 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.228 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.242 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.265 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.279 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.283 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.306 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.308 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.342 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.343 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.351 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.353 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.363 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.364 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.372 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.373 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.429 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.431 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.438 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.438 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.469 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.471 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.475 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.476 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.514 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.515 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.530 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.533 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.561 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.562 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.576 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.577 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.623 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.625 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.634 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.636 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.698 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.700 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.724 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.725 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.729 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.730 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.740 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.741 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.759 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.760 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.926 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.927 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.961 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.962 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.975 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.977 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.989 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:51.990 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.016 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.018 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.019 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.021 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.024 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.026 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.033 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.037 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.091 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.094 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.205 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.206 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.220 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.221 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.245 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.247 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.258 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.259 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.283 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.284 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.286 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.287 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.329 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.332 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.351 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.352 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.409 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.411 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.444 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.445 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.447 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.449 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.453 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.455 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.457 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.457 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.461 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.462 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.505 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.507 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.508 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.511 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.662 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.663 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.736 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.737 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:06:52.793 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.795 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.921 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.922 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.935 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.936 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.953 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.954 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.955 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.957 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:06:52.988 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:52.989 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.088 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.089 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.097 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.100 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.131 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.132 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.148 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.149 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.157 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.158 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.175 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.177 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.184 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.186 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.187 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.189 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.228 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.230 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.231 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.233 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.236 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.239 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.241 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.243 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.254 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.256 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.262 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.264 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.267 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.276 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.288 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.289 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.292 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.295 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.296 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.299 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.302 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.304 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.312 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.313 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.323 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.324 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.329 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.332 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.337 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.339 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.342 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.345 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.387 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.389 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.520 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.521 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.525 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.526 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.545 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.561 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.591 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.593 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.595 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.598 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.612 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.613 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.624 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.627 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.633 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.635 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.666 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.667 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.695 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.697 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.699 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.701 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.705 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.706 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.718 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.720 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.739 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.740 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.772 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.773 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.809 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.811 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.819 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.823 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:06:53.835 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.837 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.840 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.842 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.844 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.846 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.848 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.849 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.873 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.875 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.887 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.889 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.890 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.892 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.907 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.910 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.922 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.923 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.928 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.931 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.939 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.940 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.946 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.950 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.953 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.962 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.971 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.975 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.979 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:53.983 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.018 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.019 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.056 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.057 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.068 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.070 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.072 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.073 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.093 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.095 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.154 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.157 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.200 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.202 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.206 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.207 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.229 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.230 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.305 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.307 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.369 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.370 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.371 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.372 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.384 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.386 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.532 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.533 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.601 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.603 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.604 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.605 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.636 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.637 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.643 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.645 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.696 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.698 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.699 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.702 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.759 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.759 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.760 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:54.761 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.006 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.007 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.077 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.086 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.094 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.096 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.098 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.101 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.106 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.122 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.141 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.144 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.148 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.162 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.166 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.180 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.182 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.193 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.198 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.207 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.211 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.226 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.230 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.241 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.249 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.251 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.255 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.259 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.294 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.302 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.306 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.309 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.316 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.319 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.320 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.322 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.325 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.366 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.374 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.386 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.391 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.408 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.409 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.420 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.424 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.438 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.445 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.446 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.448 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.450 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.455 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.460 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.461 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.483 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.499 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.501 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.519 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.544 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.548 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.552 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.554 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.555 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.557 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.568 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.647 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.652 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.660 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.666 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.670 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.673 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.675 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.677 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.685 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.687 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.690 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.691 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.694 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.697 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.700 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.703 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.704 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.705 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.706 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.709 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.711 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.716 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.720 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.723 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.734 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.772 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.774 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.783 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.787 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.788 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.792 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.806 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.809 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.820 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.831 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.836 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.839 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.845 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.851 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.865 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.880 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.884 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.888 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.893 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.896 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.898 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.900 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.909 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.915 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.916 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.920 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.922 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.923 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.926 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.927 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.929 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.932 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.934 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.942 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.949 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.952 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.955 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.959 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.971 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.984 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.987 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:55.992 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.008 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.024 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.026 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.030 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.091 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.115 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.117 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.126 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.128 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.140 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.141 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.162 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.165 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:56.245 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.371 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.389 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.414 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.417 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.420 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.424 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.432 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.447 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.453 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.457 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.465 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.497 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.502 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.524 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.527 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.557 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.583 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.601 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.618 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.657 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.663 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.683 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.690 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.691 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.695 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.703 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.773 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.789 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.798 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.807 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.820 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.823 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.825 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.829 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.836 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.916 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.922 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.934 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.940 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.950 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.951 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.970 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:57.978 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.002 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.014 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.016 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.018 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.020 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.023 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.031 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.032 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.068 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.094 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.097 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.117 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.160 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.168 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.177 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.178 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.182 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.183 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.196 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.238 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.241 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.257 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.263 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.268 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.274 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.278 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.281 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.295 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.319 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.321 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.323 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.327 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.331 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.335 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.341 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.343 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.344 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.346 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.349 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.355 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.358 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.361 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.375 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.390 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.449 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.451 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.457 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.461 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.464 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.467 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.473 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.477 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.488 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.501 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.503 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.505 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.512 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.525 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.551 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.577 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.585 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.587 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.594 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.598 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.600 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.603 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.616 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.624 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.625 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.632 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.638 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.640 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.644 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.649 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.652 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.657 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.661 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.677 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.690 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.697 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.700 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.709 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.738 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.773 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.777 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.793 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.842 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.876 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.878 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.887 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.941 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.975 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.977 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.992 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:06:58.997 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.035 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.037 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.093 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.094 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.252 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.296 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.304 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.311 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.313 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.317 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.320 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.334 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.353 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.357 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.360 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.365 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.383 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.386 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.402 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.405 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.413 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.416 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.422 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.426 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.438 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.440 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.448 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.453 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.458 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.462 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.466 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.501 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.508 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.514 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.516 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.525 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.527 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.528 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.531 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.539 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.588 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.594 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.605 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.610 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.624 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.625 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.635 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.641 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.652 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.661 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.664 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.666 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.670 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.673 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.681 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.686 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.725 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.749 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.752 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.770 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.802 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.805 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.811 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.814 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.815 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.816 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.826 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.853 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.856 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.865 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.870 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.873 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.875 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.879 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.881 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.885 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.887 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.888 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.892 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.893 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.896 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.898 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.901 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.904 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.906 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.907 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.909 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.911 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.922 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.948 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.953 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:06:59.972 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.003 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.006 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.008 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.010 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.012 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.015 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.022 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.026 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.036 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.041 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.042 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.044 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.049 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.053 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.066 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.080 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.084 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.087 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.091 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.094 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.097 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.099 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.108 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.114 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.117 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.122 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.130 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.131 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.134 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.136 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.137 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.144 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.146 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.155 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.162 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.166 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.170 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.175 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.190 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.198 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.200 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.206 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.241 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.287 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.288 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.291 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.315 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.331 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.333 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.339 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.341 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.350 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.352 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.364 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.365 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.421 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.445 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.453 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.459 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.461 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.464 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.466 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.474 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.480 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.484 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.489 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.492 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.505 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.508 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.519 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.524 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.533 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.539 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.548 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.552 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.565 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.568 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.575 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.583 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.586 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.589 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.592 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.634 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.651 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.657 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.660 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.669 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.676 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.678 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.681 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.685 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.706 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.709 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.716 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.720 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.724 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.725 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.737 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.740 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.751 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.756 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.757 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.758 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.759 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.760 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.765 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.767 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.785 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.798 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.799 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.808 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.830 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.834 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.837 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.838 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.839 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.840 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.846 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.864 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.867 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.883 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.907 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.911 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.916 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.922 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.923 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.931 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.939 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.942 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.944 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.946 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.960 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.963 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.965 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.966 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.969 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.970 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.972 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.975 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.980 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.984 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.987 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:07:00.993 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.018 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.019 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.022 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.024 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.051 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.056 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.061 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.065 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.074 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.087 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.088 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.089 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.092 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.100 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.110 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.117 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.120 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.121 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.125 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.126 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.130 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.132 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.140 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.145 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.148 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.153 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.158 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.159 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.162 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.166 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.168 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.172 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.173 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.184 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.191 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.196 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.199 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.205 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.225 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.235 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.237 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.243 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.257 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.271 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.273 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.276 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.293 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.341 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.343 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.353 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.357 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.371 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.375 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.388 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.390 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:07:01.446 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
RNTIs in packets of s66: ['71b4']
2024-12-19 16:07:10.023 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.025 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.026 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.027 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.110 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.111 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.112 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.112 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.216 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.265 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.267 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.268 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.269 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.270 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.272 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.274 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.274 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.276 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.277 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.417 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.418 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.419 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.419 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.558 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.559 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.560 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.561 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.652 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.653 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.654 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.655 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.655 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.657 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.657 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.659 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.660 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.661 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.728 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.729 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.729 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.730 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.824 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:10.825 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.003 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.003 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.145 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.208 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.209 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.212 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.213 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.214 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.215 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.387 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.388 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.552 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.553 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.619 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.620 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.621 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.622 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.623 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.623 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.734 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.736 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.761 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.762 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.898 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:11.900 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.034 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.107 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.108 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.109 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.110 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.112 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.113 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.306 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.307 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.490 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.492 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.569 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.571 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.572 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.573 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.574 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.576 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.674 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:12.675 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:14.858 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:14.859 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:14.933 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:14.934 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.012 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.058 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.059 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.061 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.063 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.064 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.067 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.212 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.214 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.352 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.353 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.408 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.412 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.413 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.414 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.415 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.416 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.470 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.471 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.500 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.501 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.727 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.728 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:15.907 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.014 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.015 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.016 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.017 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.017 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.018 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.274 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.275 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.517 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.518 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.622 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.623 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.624 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.625 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.628 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.629 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.733 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.734 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.806 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:16.807 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:07:17.065 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.066 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:07:17.307 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.308 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.441 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.442 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.444 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.447 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.448 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.448 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.449 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.450 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:07:17.838 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:17.839 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:07:18.161 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.162 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:07:18.297 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.299 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.300 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.301 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.301 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.302 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.303 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.303 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:07:18.438 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.439 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:07:18.486 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.487 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:07:18.828 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:18.829 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:07:19.145 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.147 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.312 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.313 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.313 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.314 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.315 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.317 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.317 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.318 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:07:19.781 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:19.782 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:07:20.318 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.319 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:07:20.531 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.533 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.534 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.535 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.536 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.536 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.538 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.538 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:07:20.725 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.726 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:07:20.747 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.749 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.840 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.841 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.910 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.947 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.948 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.949 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.950 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.951 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:20.952 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.048 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.049 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.140 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.142 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.183 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.183 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.185 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.185 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.187 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.188 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.227 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:21.228 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.023 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.024 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.120 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.121 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.223 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.280 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.281 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.282 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.282 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.283 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.285 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.493 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.494 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.652 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.654 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.725 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.726 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.727 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.727 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.728 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.729 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.828 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.829 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.847 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.848 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.908 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.909 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:22.973 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.009 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.010 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.011 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.013 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.014 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.015 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.103 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.105 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.192 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.193 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.247 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.251 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.253 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.254 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.255 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.257 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.313 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.314 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.339 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.341 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.415 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.416 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.481 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.515 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.516 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.517 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.520 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.521 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.522 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.604 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.605 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.686 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.687 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.721 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.722 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.723 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.724 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.725 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.727 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.761 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:07:23.762 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
In [63]:
Meas_s40_s59_s616263_s66.dataFrame(
    [
        "tbss",
        "segments",
        "segmentation_delays_wo_scheduling_delay",
    ],  # attrbutes name of Meas.delays
    [
        "TBS",
        "SegmentsNum",
        "SegmentDelay(noSched)",
    ],  # labels to display (optional)
)
Meas_s40_s59_s616263_s66.plotCCDF(
    ["segmentation_delays_wo_scheduling_delay"],
    ["s40", "s59", "s61", "s62", "s63", "s66"],
)
Meas_s40_s59_s616263_s66.plotCCDF(
    ["segments"],
    ["s40", "s59", "s61", "s62", "s63", "s66"],
)
for i in range(0, 5):
    x = Meas_s40_s59_s616263_s66.meas[i].delays.segments
    y = Meas_s40_s59_s616263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    plt.scatter(x, y)
    plt.xlabel("Segments Number")
    plt.ylabel("segmentation_delay")
    plt.title(f"{Meas_s40_s59_s616263_s66.meas[i].meas_label}")
plt.show()

fig = plt.figure(figsize=(8, 6))
# 创建图形和 3D 子图
ax = fig.add_subplot(111, projection="3d")
#c = ["r", "g", "b", "orange", "cyan", "m"]
for i in range(0, 6):
    x = Meas_s40_s59_s616263_s66.meas[i].delays.segments
    y = Meas_s40_s59_s616263_s66.meas[i].delays.tbss
    z = Meas_s40_s59_s616263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    # 绘制 3D 散点图
    ax.scatter(x, y, z, marker="o", alpha=0.8)
    # 显示图形

# 设置坐标轴标签
ax.set_xlabel("segments")
ax.set_ylabel("TBS")
ax.set_zlabel("segmentation_delay")
plt.show()
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            4              11.732101
1  116            1               2.104998
2   24            4              12.003183
3   24            3               9.509802
4   24            1               9.574890
./data/csv/
Dataframe saved to ./data/csv/s40_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.505987
1   24            3               9.545088
2   24            2              11.962891
3   24            3               9.494781
4   24            1               9.520769
Dataframe saved to ./data/csv/s59_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.579897
1   24            3               9.560108
2   24            1               9.532213
3   24            3               9.479761
4   24            2              12.001991
Dataframe saved to ./data/csv/s61_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            3               9.410858
1   24            3               9.418011
2   24            4              11.901855
3   24            4              11.814833
4   24            3               9.358883
Dataframe saved to ./data/csv/s62_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.531975
1   24            3               9.627819
2   24            1               9.535789
3   24            3               9.494066
4   24            2              11.957884
Dataframe saved to ./data/csv/s63_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.522915
1   24            3               9.600878
2   24            2              12.004852
3   24            3               9.702682
4   24            1               9.557724
Dataframe saved to ./data/csv/s66_TBS_SegmentsNum_SegmentDelay(noSched).csv
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
No description has been provided for this image
In [64]:
import glob
print("Reading the CSV files")
csv_files = glob.glob(f"data/csv/*.csv")
print("\nCombining all uploaded files into a single DataFrame...")
combined_df = pd.concat(
    [pd.read_csv(file, index_col=0) for file in csv_files], ignore_index=True
)
df = combined_df
Reading the CSV files

Combining all uploaded files into a single DataFrame...
In [65]:
len(df)
Out[65]:
223854
In [66]:
import pandas as pd
import numpy as np
from tqdm import tqdm

# Example: df is your original dataframe
# df must contain columns: "SegmentsNum", "TBS", "SegmentDelay(noSched)"
# Ensure df has no missing values or handle them as needed

# Filter rows where SegmentsNum >= 3
high_delay_rows = df[df["SegmentsNum"] != 3]

# List to hold augmented data
augmented_data = []

# Number of duplicates per row
N_DUPLICATES = 1000

for idx, row in tqdm(
    high_delay_rows.iterrows(),
    total=high_delay_rows.shape[0],
    desc="Augmenting Data",
    unit="row",
):
    original_delay = row["SegmentDelay(noSched)"]

    # Calculate standard deviation for the Gaussian noise
    # If original_delay can be zero or negative, handle that case appropriately
    # For now, we assume it's positive
    sigma = 0.0001 * original_delay

    # Generate noise and add to the original SegmentDelay(noSched)
    noise = np.random.randn(N_DUPLICATES) * sigma
    new_delays = original_delay + noise

    # Create a DataFrame of duplicated rows
    # Keep all columns the same except SegmentDelay(noSched), which will be varied
    replicated_rows = pd.DataFrame(
        {
            "SegmentsNum": np.repeat(row["SegmentsNum"], N_DUPLICATES),
            "TBS": np.repeat(row["TBS"], N_DUPLICATES),
            "SegmentDelay(noSched)": new_delays,
        }
    )

    # If there are other columns in df that you want to keep as is:
    # For example, if df has columns ["SegmentsNum", "TBS", "SegmentDelay(noSched)", "SomeOtherFeat"]
    # replicated_rows = pd.concat([
    #     pd.DataFrame(np.repeat([row.drop("SegmentDelay(noSched)").values], N_DUPLICATES, axis=0),
    #                  columns=row.drop("SegmentDelay(noSched)").index),
    #     pd.DataFrame({"SegmentDelay(noSched)": new_delays})
    # ], axis=1)

    augmented_data.append(replicated_rows)

# Combine all augmented rows
augmented_df = pd.concat(augmented_data, ignore_index=True)

# Append to original dataframe (optional)
df_augmented = pd.concat([df, augmented_df], ignore_index=True)

# Now df_augmented contains your original data plus the augmented samples
print(
    "Augmentation complete. Original size:",
    len(df),
    "Augmented size:",
    len(df_augmented),
)
Augmenting Data: 100%|██████████| 384/384 [00:00<00:00, 2314.78row/s]
Augmentation complete. Original size: 223854 Augmented size: 607854
In [67]:
# high_delay_rows = df[df["SegmentsNum"] == 4]
# len(high_delay_rows)
In [68]:
import numpy as np
import matplotlib.pyplot as plt

# Extract the segmentNum column
segment_nums = df_augmented["SegmentsNum"].values

# Sort the values in ascending order
sorted_vals = np.sort(segment_nums)
n = len(sorted_vals)

# Get the unique values to plot against
unique_vals = np.unique(sorted_vals)

# Compute the CCDF for each unique value
ccdf = []
for val in unique_vals:
    # CCDF(val) = P(X > val) = number of elements greater than val / total elements
    ccdf_val = np.sum(sorted_vals > val) / n
    ccdf.append(ccdf_val)

# Plot the CCDF
plt.figure(figsize=(8, 6))
plt.step(unique_vals, ccdf, where="post", label="CCDF", color="blue")

plt.xlabel("SegmentsNum")
plt.ylabel("CCDF (P(X > x))")
plt.title("CCDF of SegmentsNum in Augmented Dataset")
plt.grid(True)
plt.legend()

# Optional: Use a log scale if desired to highlight tail behavior
# plt.yscale('log')
# plt.xscale('log')

plt.show()
No description has been provided for this image

10 "s40","s62","s63","s66"¶

In [69]:
Meas_s40_s6263_s66 = MultiMeas(meas_labels=["s40", "s62", "s63", "s66"])
RNTIs in packets of s40: ['9afe']
RNTIs in packets of s62: ['a244']
2024-12-19 16:10:20.829 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:20.839 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:20.841 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:20.932 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:20.933 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:20.947 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.023 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.047 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.049 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.119 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.250 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.252 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.254 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.255 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.287 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.368 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.369 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.369 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.370 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.412 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.515 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.543 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.563 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.709 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.710 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.745 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.748 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.749 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.794 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.796 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.805 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.848 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.857 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.859 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.881 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.978 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.980 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:21.997 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.072 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.072 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.110 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.205 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.240 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.267 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.422 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.423 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.432 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.436 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.438 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.490 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.491 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.501 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.547 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.553 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.554 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.578 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.686 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.687 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.708 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.801 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.802 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.852 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:22.974 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:23.003 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:23.029 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:23.191 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:23.192 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.343 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.345 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.346 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.395 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.396 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.406 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.446 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.451 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.451 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.467 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.532 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.533 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.546 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.596 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.597 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.625 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.692 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.712 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.727 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.817 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.818 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.826 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.829 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.829 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.889 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.891 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.901 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.958 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.968 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:24.969 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.002 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.138 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.139 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.165 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.282 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.284 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.349 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.498 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.535 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.567 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.763 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.764 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.775 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.777 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.783 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.785 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.785 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.786 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.868 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.869 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.870 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.871 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.885 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.886 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.961 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.963 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.973 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.975 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.976 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:25.977 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.018 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.018 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.194 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.195 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:10:26.231 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.232 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.387 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.388 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:10:26.471 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.472 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.683 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.684 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.740 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.741 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.787 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:26.788 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.065 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.066 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.067 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.068 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.083 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.084 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.093 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.094 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.095 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.096 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.224 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.225 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.226 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.231 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.276 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.277 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.406 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.407 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.423 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.424 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.424 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.425 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.490 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.490 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.775 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.776 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
For packet(id=27083), tx_delay == None!
2024-12-19 16:10:27.829 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:27.831 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.041 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.043 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
For packet(id=21090), tx_delay == None!
2024-12-19 16:10:28.159 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.160 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.451 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.452 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.522 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.523 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.590 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.591 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.968 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.970 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.971 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.972 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.991 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.993 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:28.994 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.023 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.024 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.029 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.053 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.056 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.056 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.070 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.117 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.118 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.129 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.169 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.170 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.192 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.246 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.260 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.275 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.347 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:29.348 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.032 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.035 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.035 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.079 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.080 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.087 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.132 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.139 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.139 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.160 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.253 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.254 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.275 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.349 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.351 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.392 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.493 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.522 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.545 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.679 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.680 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.688 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.690 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.691 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.712 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.713 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.717 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.735 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.739 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.740 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.750 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.790 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.792 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.801 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.840 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.841 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.863 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.945 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.959 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:30.972 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.038 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.038 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.048 | ERROR    | decomp:get_tx_delay:246 - Packet 39975 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.050 | ERROR    | decomp:get_tx_delay:246 - Packet 39851 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.051 | ERROR    | decomp:get_tx_delay:246 - Packet 39850 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.072 | ERROR    | decomp:get_tx_delay:246 - Packet 37156 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.073 | ERROR    | decomp:get_tx_delay:246 - Packet 37149 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.076 | ERROR    | decomp:get_tx_delay:246 - Packet 36729 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.095 | ERROR    | decomp:get_tx_delay:246 - Packet 34309 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.099 | ERROR    | decomp:get_tx_delay:246 - Packet 33978 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.100 | ERROR    | decomp:get_tx_delay:246 - Packet 33977 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.120 | ERROR    | decomp:get_tx_delay:246 - Packet 32712 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.164 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.165 | ERROR    | decomp:get_tx_delay:246 - Packet 27083 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.175 | ERROR    | decomp:get_tx_delay:246 - Packet 25971 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.212 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.213 | ERROR    | decomp:get_tx_delay:246 - Packet 21090 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.232 | ERROR    | decomp:get_tx_delay:246 - Packet 18447 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.282 | ERROR    | decomp:get_tx_delay:246 - Packet 11962 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.295 | ERROR    | decomp:get_tx_delay:246 - Packet 10329 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.306 | ERROR    | decomp:get_tx_delay:246 - Packet 8918 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.381 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
2024-12-19 16:10:31.382 | ERROR    | decomp:get_tx_delay:246 - Packet 295 phy.in_t or phy.in_t not present
RNTIs in packets of s63: ['71f5']
2024-12-19 16:10:39.921 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.932 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.944 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.947 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.949 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.954 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.960 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.974 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.978 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.982 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:39.987 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.004 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.006 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.019 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.020 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.031 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.034 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.043 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.052 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.068 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.071 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.087 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.095 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.097 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.102 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.109 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.169 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.183 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.190 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.195 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.206 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.208 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.211 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.217 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.222 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.253 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.257 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.271 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.275 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.285 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.286 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.298 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.303 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.315 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.322 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.322 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.324 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.325 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.329 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.334 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.335 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.358 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.375 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.376 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.379 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.379 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.394 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.425 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.431 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.434 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.435 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.436 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.437 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.438 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.439 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.440 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.440 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.450 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.476 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.480 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.490 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.496 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.500 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.503 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.505 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.506 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.514 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.515 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.516 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.532 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.549 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.551 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.553 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.556 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.561 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.564 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.565 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.566 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.571 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.580 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.582 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.583 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.589 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.618 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.619 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.623 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.625 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.629 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.631 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.634 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.636 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.643 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.651 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.653 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.654 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.658 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.667 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.674 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.685 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.687 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.688 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.689 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.689 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.692 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.695 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.697 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.698 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.705 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.708 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.712 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.716 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.719 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.720 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.721 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.723 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.723 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.725 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.728 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.734 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.739 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.742 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.745 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.751 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.765 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.774 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.775 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.781 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.800 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.841 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.846 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.850 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.874 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.890 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.891 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.900 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.902 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.922 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.924 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.953 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:40.954 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.050 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.130 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.142 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.155 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.157 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.161 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.166 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.171 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.183 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.185 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.189 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.192 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.211 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.214 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.227 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.231 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.238 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.240 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.249 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.254 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.268 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.272 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.282 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.286 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.287 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.289 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.297 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.338 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.350 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.356 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.360 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.370 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.371 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.373 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.378 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.383 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.406 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.411 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.420 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.425 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.435 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.437 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.454 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.461 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.484 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.496 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.497 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.500 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.502 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.503 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.509 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.514 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.570 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.597 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.598 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.613 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.646 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.649 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.654 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.655 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.656 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.657 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.668 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.704 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.706 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.719 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.724 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.727 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.735 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.737 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.739 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.751 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.752 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.755 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.756 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.760 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.765 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.766 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.769 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.770 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.771 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.772 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.776 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.782 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.783 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.785 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.787 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.795 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.821 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.824 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.829 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.832 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.834 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.835 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.839 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.842 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.853 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.858 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.863 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.865 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.868 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.873 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.885 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.910 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.917 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.918 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.923 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.926 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.930 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.931 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.942 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.953 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.954 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.958 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.963 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.965 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.967 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.970 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.972 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.975 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.980 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:41.990 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.003 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.008 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.011 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.018 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.038 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.054 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.057 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.066 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.091 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.123 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.124 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.131 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.160 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.182 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.183 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.190 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.192 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.208 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.212 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.226 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.229 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.306 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.333 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.342 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.357 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.359 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.364 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.367 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.372 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.386 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.389 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.391 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.397 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.414 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.418 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.433 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.435 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.446 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.451 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.466 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.470 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.488 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.490 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.507 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.517 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.519 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.524 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.531 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.595 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.605 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.609 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.614 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.622 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.624 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.626 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.631 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.634 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.661 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.672 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.707 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.714 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.728 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.730 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.750 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.757 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.780 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.791 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.792 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.796 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.798 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.799 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.805 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.806 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.846 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.871 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.871 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.888 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.933 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.936 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.940 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.941 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.942 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.946 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:42.960 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.002 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.005 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.017 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.023 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.028 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.034 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.039 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.041 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.052 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.053 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.056 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.057 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.060 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.064 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.067 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.071 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.072 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.073 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.074 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.077 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.082 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.086 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.089 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.090 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.105 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.173 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.174 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.180 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.183 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.184 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.186 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.190 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.197 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.205 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.215 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.217 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.217 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.220 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.229 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.240 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.253 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.257 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.258 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.265 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.267 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.268 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.269 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.282 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.288 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.290 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.296 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.300 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.301 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.303 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.305 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.306 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.310 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.314 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.321 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.330 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.333 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.336 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.345 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.377 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.399 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.401 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.408 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.433 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.453 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.454 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.461 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.489 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.512 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.514 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.533 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.553 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.574 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.578 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.598 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.599 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:43.697 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.650 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.655 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.662 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.664 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.665 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.667 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.669 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.675 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.678 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.680 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.682 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.690 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.692 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.699 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.700 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.704 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.706 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.711 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.714 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.722 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.724 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.731 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.735 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.738 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.740 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.743 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.768 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.774 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.778 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.779 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.785 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.785 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.786 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.787 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.790 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.804 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.806 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.812 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.814 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.819 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.819 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.861 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.866 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.883 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.888 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.889 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.890 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.893 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.896 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.903 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.905 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.928 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.941 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.942 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.953 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.974 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.979 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.982 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.984 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.985 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.985 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:45.993 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.016 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.020 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.027 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.032 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.034 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.036 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.039 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.040 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.047 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.048 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.049 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.051 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.052 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.054 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.055 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.057 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.061 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.063 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.065 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.066 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.068 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.071 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.073 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.074 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.083 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.128 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.132 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.137 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.138 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.139 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.141 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.144 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.146 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.150 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.155 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.156 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.156 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.160 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.163 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.169 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.174 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.178 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.179 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.181 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.182 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.182 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.183 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.187 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.189 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.190 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.192 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.195 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.196 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.199 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.200 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.201 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.202 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.204 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.208 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.217 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.220 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.221 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.226 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.239 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.250 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.252 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.257 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.281 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.297 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.299 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.303 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.323 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.342 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.343 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.352 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.354 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.364 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.365 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.384 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.386 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.437 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.472 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.490 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.513 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.515 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.519 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.521 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.526 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.546 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.550 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.554 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.557 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.584 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.586 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.597 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.599 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.608 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.613 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.621 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.626 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.643 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.646 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.656 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.662 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.664 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.667 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.673 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.723 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.735 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.739 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.742 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.753 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.755 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.756 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.759 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.763 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.816 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.826 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.837 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.841 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.850 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.850 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.866 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.874 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.892 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.905 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.905 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.907 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.909 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.911 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.917 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.918 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.952 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.973 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.975 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:46.994 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.034 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.037 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.042 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.043 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.044 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.045 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.055 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.088 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.091 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.103 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.109 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.112 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.116 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.120 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.121 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.129 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.131 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.132 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.133 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.136 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.139 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.139 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.143 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.166 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.167 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.170 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.181 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.188 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.189 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.192 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.194 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.208 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.244 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.245 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.250 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.252 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.253 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.255 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.260 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.263 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.273 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.283 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.284 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.286 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.290 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.296 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.306 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.318 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.323 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.324 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.328 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.329 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.331 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.332 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.338 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.344 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.345 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.347 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.349 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.351 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.354 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.355 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.356 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.360 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.361 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.369 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.377 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.381 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.412 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.426 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.452 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.467 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.469 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.476 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.503 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.527 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.528 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.532 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.561 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.584 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.584 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.594 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.597 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.612 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.612 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.631 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.632 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.723 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.757 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.759 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.775 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.776 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.794 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.795 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.797 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.798 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.802 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.802 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.805 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.806 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.814 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.816 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.832 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.833 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.837 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.838 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.842 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.842 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.848 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.882 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.917 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.918 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.921 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.922 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.937 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.938 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.942 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.943 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.956 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.956 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.963 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.964 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.978 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.979 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.985 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:47.986 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.008 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.010 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.014 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.015 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.034 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.034 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.042 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.044 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.045 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.047 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.052 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.053 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.060 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.062 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.146 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.148 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.169 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.170 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.178 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.178 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.184 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.187 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.228 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.229 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.231 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.232 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.234 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.236 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.241 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.247 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.256 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.257 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.304 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.305 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.313 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.314 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.326 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.327 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.335 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.336 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.348 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.349 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.350 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.351 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.378 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.379 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.388 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.389 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.418 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.419 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.434 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.435 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.435 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.436 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.439 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.440 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.444 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.445 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.447 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.448 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.455 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.456 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.457 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.457 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.505 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.506 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.538 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.539 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:10:48.566 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.567 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.624 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.627 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.632 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.633 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.639 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.639 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.640 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.640 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:10:48.655 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.661 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.735 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.736 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.741 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.742 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.759 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.761 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.769 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.770 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.774 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.777 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.783 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.783 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.787 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.788 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.789 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.790 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.804 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.805 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.805 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.806 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.807 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.810 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.812 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.813 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.816 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.817 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.820 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.821 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.823 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.823 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.828 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.831 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.832 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.832 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.833 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.835 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.836 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.838 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.840 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.845 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.850 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.851 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.852 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.853 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.855 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.856 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.860 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.862 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.879 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.895 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.966 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.967 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.969 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.970 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.977 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.978 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.981 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.983 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.984 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.987 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.989 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.990 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.997 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:48.998 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.001 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.002 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.016 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.017 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.031 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.032 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.033 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.034 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.036 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.037 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.041 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.044 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.052 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.053 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.066 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.067 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.118 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.119 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.127 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.129 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:10:49.136 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.137 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.139 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.140 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.141 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.152 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.154 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.156 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.171 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.173 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.184 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.185 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.186 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.187 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.191 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.194 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.198 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.198 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.200 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.201 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.204 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.204 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.206 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.206 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.207 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.211 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.215 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.216 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.217 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.218 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.228 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.229 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.240 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.241 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.247 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.248 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.249 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.252 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.259 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.261 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.322 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.331 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.355 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.356 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.359 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.362 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.370 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.371 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.406 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.407 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.439 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.440 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.442 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.445 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.451 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.452 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.499 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.500 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.533 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.534 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.535 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.535 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.548 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.549 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.552 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.553 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.579 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.579 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.580 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.581 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.607 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.609 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.611 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.612 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.780 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.781 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.821 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.822 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.842 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.844 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.867 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.868 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.871 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.872 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.879 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.880 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.884 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.885 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.895 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.897 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.919 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.919 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.923 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.927 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.931 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.932 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.936 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.938 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.968 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.969 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.973 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.974 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.998 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:49.999 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.001 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.002 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.017 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.017 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.030 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.039 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.077 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.078 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.087 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.088 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.119 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.120 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.125 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.128 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.147 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.148 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.158 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.161 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.162 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.163 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.168 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.169 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.180 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.181 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.287 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.288 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.311 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.312 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.319 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.320 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.325 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.327 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.346 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.346 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.349 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.349 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.351 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.352 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.393 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.395 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.406 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.407 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.466 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.466 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.477 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.478 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.494 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.496 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.502 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.503 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.517 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.518 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.519 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.519 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.561 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.562 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.574 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.576 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.613 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.613 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.633 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.634 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.634 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.635 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.638 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.638 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.640 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.641 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.644 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.646 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.655 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.656 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.657 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.658 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.720 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.721 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.764 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.765 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
For packet(id=24231), tx_delay == None!
2024-12-19 16:10:50.797 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.798 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.872 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.872 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.882 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.882 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.889 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.890 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.890 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.893 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
For packet(id=21568), tx_delay == None!
2024-12-19 16:10:50.913 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:50.915 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.024 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.025 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.031 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.032 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.053 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.054 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.065 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.066 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.072 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.072 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.082 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.083 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.089 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.090 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.091 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.094 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.111 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.112 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.113 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.114 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.115 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.117 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.119 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.119 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.122 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.123 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.127 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.128 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.133 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.137 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.146 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.154 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.168 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.171 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.173 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.176 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.179 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.180 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.183 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.184 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.196 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.198 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.202 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.203 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.206 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.207 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.211 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.212 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.228 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.228 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.298 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.299 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.301 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.302 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.310 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.311 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.315 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.317 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.317 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.318 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.321 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.321 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.330 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.331 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.335 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.335 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.354 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.355 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.371 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.373 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.377 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.378 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.379 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.379 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.398 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.400 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.423 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.425 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.463 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.465 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.521 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.522 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.530 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.531 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
For packet(id=14169), tx_delay == None!
2024-12-19 16:10:51.539 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.542 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.546 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.547 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.549 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.550 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.550 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.551 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.565 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.566 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.572 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.575 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.577 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.578 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.584 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.585 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.589 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.590 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.590 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.591 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.597 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.598 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.600 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.601 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.602 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.602 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.623 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.636 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.639 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.644 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.669 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.670 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.687 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.688 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.698 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.700 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.702 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.703 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.723 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.726 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.768 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.769 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.796 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.797 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.800 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.808 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.822 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.825 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.883 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.884 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.931 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.932 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.932 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.933 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.942 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:51.944 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.004 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.016 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.085 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.085 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.086 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.086 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.111 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.112 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.115 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.116 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.151 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.152 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.152 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.153 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.197 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.198 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.199 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.199 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.456 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.457 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.517 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.521 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.528 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.529 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.530 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.532 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.533 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.538 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.540 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.544 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.546 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.554 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.555 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.561 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.563 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.567 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.570 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.575 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.579 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.599 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.620 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.629 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.633 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.634 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.636 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.648 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.683 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.689 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.693 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.695 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.700 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.701 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.702 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.704 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.705 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.732 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.735 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.742 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.748 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.754 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.756 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.768 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.776 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.793 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.829 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.830 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.833 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.834 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.835 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.839 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.848 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.868 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.879 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.880 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.892 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.914 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.917 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.919 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.920 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.921 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.921 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.925 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.940 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.943 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.949 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.951 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.953 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.955 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.956 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.958 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.963 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.964 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.964 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.965 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.968 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.969 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.969 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.971 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.972 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:52.973 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.007 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.014 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.017 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.019 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.022 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.028 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.052 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.081 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.089 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.094 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.096 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.098 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.099 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.109 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.112 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.118 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.123 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.124 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.127 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.129 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.133 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.138 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.145 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.147 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.149 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.151 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.153 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.155 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.157 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.164 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.167 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.169 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.172 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.179 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.180 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.181 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.183 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.184 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.186 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.188 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.192 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.197 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.199 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.200 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.203 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.239 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.251 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.252 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.256 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.276 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.286 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.287 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.290 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.302 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.313 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.313 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.317 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.318 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.326 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.327 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.335 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.336 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:53.375 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.168 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.177 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.186 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.187 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.189 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.194 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.199 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.206 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.212 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.214 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.217 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.230 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.233 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.249 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.252 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.279 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.285 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.297 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.308 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.326 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.329 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.338 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.344 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.346 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.351 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.358 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.418 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.429 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.434 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.438 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.450 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.452 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.454 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.458 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.466 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.520 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.529 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.543 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.550 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.568 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.569 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.590 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.609 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.628 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.639 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.641 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.643 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.646 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.648 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.653 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.655 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.700 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.722 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.723 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.738 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.769 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.773 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.777 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.777 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.777 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.778 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.785 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.819 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.822 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.831 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.834 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.837 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.842 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.880 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.885 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.897 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.898 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.901 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.902 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.904 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.910 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.918 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.926 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.928 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.929 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.931 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.932 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.935 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.936 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.938 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.940 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.948 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.983 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.985 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.992 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.996 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:54.998 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.000 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.004 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.008 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.020 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.029 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.031 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.032 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.035 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.046 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.058 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.071 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.074 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.076 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.078 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.079 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.080 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.081 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.089 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.102 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.108 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.130 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.134 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.136 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.138 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.141 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.144 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.147 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.149 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.169 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.179 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.185 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.188 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.200 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.238 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.255 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.258 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.265 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.288 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.304 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.305 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.309 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.333 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.352 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.353 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.362 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.364 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.392 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.395 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.434 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.435 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.513 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.537 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.541 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.545 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.546 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.549 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.550 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.552 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.556 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.557 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.559 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.560 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.566 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.567 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.571 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.572 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.576 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.578 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.581 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.586 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.592 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.593 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.599 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.602 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.602 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.604 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.606 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.637 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.653 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.656 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.661 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.680 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.681 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.683 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.686 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.690 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.703 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.708 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.712 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.715 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.718 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.719 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.726 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.731 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.737 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.741 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.742 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.743 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.744 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.745 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.748 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.749 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.761 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.769 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.770 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.777 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.793 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.795 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.799 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.800 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.800 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.801 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.806 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.840 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.845 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.853 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.856 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.858 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.867 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.870 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.871 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.874 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.876 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.876 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.879 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.880 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.882 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.883 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.885 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.886 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.886 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.889 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.892 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.896 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.898 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.901 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.902 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.910 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.935 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.938 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.940 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.943 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.944 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.948 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.951 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.952 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.957 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.962 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.964 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.965 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.967 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.969 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:55.979 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.014 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.017 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.017 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.019 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.026 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.028 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.030 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.033 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.035 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.036 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.038 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.040 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.042 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.043 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.043 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.044 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.045 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.047 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.050 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.053 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.055 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.055 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.060 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.068 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.074 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.075 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.078 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.088 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.097 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.098 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.099 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.112 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.120 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.121 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.126 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.128 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.135 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.135 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.144 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.146 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.230 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.249 | ERROR    | decomp:get_tx_delay:246 - Packet 39916 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.253 | ERROR    | decomp:get_tx_delay:246 - Packet 39502 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.258 | ERROR    | decomp:get_tx_delay:246 - Packet 39013 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.259 | ERROR    | decomp:get_tx_delay:246 - Packet 38994 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.260 | ERROR    | decomp:get_tx_delay:246 - Packet 38894 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.263 | ERROR    | decomp:get_tx_delay:246 - Packet 38817 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.265 | ERROR    | decomp:get_tx_delay:246 - Packet 38639 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.270 | ERROR    | decomp:get_tx_delay:246 - Packet 38190 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.272 | ERROR    | decomp:get_tx_delay:246 - Packet 38114 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.273 | ERROR    | decomp:get_tx_delay:246 - Packet 38041 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.276 | ERROR    | decomp:get_tx_delay:246 - Packet 37963 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.282 | ERROR    | decomp:get_tx_delay:246 - Packet 37315 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.284 | ERROR    | decomp:get_tx_delay:246 - Packet 37252 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.288 | ERROR    | decomp:get_tx_delay:246 - Packet 36830 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.289 | ERROR    | decomp:get_tx_delay:246 - Packet 36791 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.293 | ERROR    | decomp:get_tx_delay:246 - Packet 36469 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.296 | ERROR    | decomp:get_tx_delay:246 - Packet 36339 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.299 | ERROR    | decomp:get_tx_delay:246 - Packet 36029 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.301 | ERROR    | decomp:get_tx_delay:246 - Packet 35858 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.306 | ERROR    | decomp:get_tx_delay:246 - Packet 35247 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.308 | ERROR    | decomp:get_tx_delay:246 - Packet 35153 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.312 | ERROR    | decomp:get_tx_delay:246 - Packet 34743 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.314 | ERROR    | decomp:get_tx_delay:246 - Packet 34533 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.317 | ERROR    | decomp:get_tx_delay:246 - Packet 34523 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.318 | ERROR    | decomp:get_tx_delay:246 - Packet 34426 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.320 | ERROR    | decomp:get_tx_delay:246 - Packet 34237 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.340 | ERROR    | decomp:get_tx_delay:246 - Packet 32034 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.349 | ERROR    | decomp:get_tx_delay:246 - Packet 31574 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.352 | ERROR    | decomp:get_tx_delay:246 - Packet 31415 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.356 | ERROR    | decomp:get_tx_delay:246 - Packet 31306 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.364 | ERROR    | decomp:get_tx_delay:246 - Packet 30931 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.368 | ERROR    | decomp:get_tx_delay:246 - Packet 30917 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.370 | ERROR    | decomp:get_tx_delay:246 - Packet 30890 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.374 | ERROR    | decomp:get_tx_delay:246 - Packet 30815 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.380 | ERROR    | decomp:get_tx_delay:246 - Packet 30690 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.414 | ERROR    | decomp:get_tx_delay:246 - Packet 29588 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.417 | ERROR    | decomp:get_tx_delay:246 - Packet 29403 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.422 | ERROR    | decomp:get_tx_delay:246 - Packet 29092 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.428 | ERROR    | decomp:get_tx_delay:246 - Packet 28949 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.444 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.446 | ERROR    | decomp:get_tx_delay:246 - Packet 28681 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.458 | ERROR    | decomp:get_tx_delay:246 - Packet 28054 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.465 | ERROR    | decomp:get_tx_delay:246 - Packet 27809 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.478 | ERROR    | decomp:get_tx_delay:246 - Packet 27085 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.489 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.491 | ERROR    | decomp:get_tx_delay:246 - Packet 26661 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.493 | ERROR    | decomp:get_tx_delay:246 - Packet 26632 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.495 | ERROR    | decomp:get_tx_delay:246 - Packet 26614 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.498 | ERROR    | decomp:get_tx_delay:246 - Packet 26586 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.500 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.501 | ERROR    | decomp:get_tx_delay:246 - Packet 26391 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.517 | ERROR    | decomp:get_tx_delay:246 - Packet 25108 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.526 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.527 | ERROR    | decomp:get_tx_delay:246 - Packet 24231 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.534 | ERROR    | decomp:get_tx_delay:246 - Packet 23510 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.548 | ERROR    | decomp:get_tx_delay:246 - Packet 21855 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.550 | ERROR    | decomp:get_tx_delay:246 - Packet 21718 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.552 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.553 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.554 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.555 | ERROR    | decomp:get_tx_delay:246 - Packet 21568 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.559 | ERROR    | decomp:get_tx_delay:246 - Packet 21203 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.573 | ERROR    | decomp:get_tx_delay:246 - Packet 19848 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.575 | ERROR    | decomp:get_tx_delay:246 - Packet 19742 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.580 | ERROR    | decomp:get_tx_delay:246 - Packet 19326 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.583 | ERROR    | decomp:get_tx_delay:246 - Packet 19123 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.584 | ERROR    | decomp:get_tx_delay:246 - Packet 19038 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.586 | ERROR    | decomp:get_tx_delay:246 - Packet 18891 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.588 | ERROR    | decomp:get_tx_delay:246 - Packet 18819 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.588 | ERROR    | decomp:get_tx_delay:246 - Packet 18810 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.592 | ERROR    | decomp:get_tx_delay:246 - Packet 18519 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.594 | ERROR    | decomp:get_tx_delay:246 - Packet 18517 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.595 | ERROR    | decomp:get_tx_delay:246 - Packet 18506 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.595 | ERROR    | decomp:get_tx_delay:246 - Packet 18500 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.597 | ERROR    | decomp:get_tx_delay:246 - Packet 18457 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.597 | ERROR    | decomp:get_tx_delay:246 - Packet 18408 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.599 | ERROR    | decomp:get_tx_delay:246 - Packet 18402 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.600 | ERROR    | decomp:get_tx_delay:246 - Packet 18342 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.601 | ERROR    | decomp:get_tx_delay:246 - Packet 18337 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.601 | ERROR    | decomp:get_tx_delay:246 - Packet 18332 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.604 | ERROR    | decomp:get_tx_delay:246 - Packet 18322 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.640 | ERROR    | decomp:get_tx_delay:246 - Packet 18281 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.649 | ERROR    | decomp:get_tx_delay:246 - Packet 18187 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.667 | ERROR    | decomp:get_tx_delay:246 - Packet 18166 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.670 | ERROR    | decomp:get_tx_delay:246 - Packet 18140 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.672 | ERROR    | decomp:get_tx_delay:246 - Packet 18125 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.679 | ERROR    | decomp:get_tx_delay:246 - Packet 17865 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.697 | ERROR    | decomp:get_tx_delay:246 - Packet 16519 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.703 | ERROR    | decomp:get_tx_delay:246 - Packet 16499 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.708 | ERROR    | decomp:get_tx_delay:246 - Packet 16366 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.711 | ERROR    | decomp:get_tx_delay:246 - Packet 16302 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.712 | ERROR    | decomp:get_tx_delay:246 - Packet 16297 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.714 | ERROR    | decomp:get_tx_delay:246 - Packet 16260 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.717 | ERROR    | decomp:get_tx_delay:246 - Packet 16142 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.718 | ERROR    | decomp:get_tx_delay:246 - Packet 16092 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.722 | ERROR    | decomp:get_tx_delay:246 - Packet 15747 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.730 | ERROR    | decomp:get_tx_delay:246 - Packet 15412 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.731 | ERROR    | decomp:get_tx_delay:246 - Packet 15411 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.731 | ERROR    | decomp:get_tx_delay:246 - Packet 15408 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.733 | ERROR    | decomp:get_tx_delay:246 - Packet 15281 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.736 | ERROR    | decomp:get_tx_delay:246 - Packet 15089 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.743 | ERROR    | decomp:get_tx_delay:246 - Packet 14700 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.749 | ERROR    | decomp:get_tx_delay:246 - Packet 14247 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.751 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.752 | ERROR    | decomp:get_tx_delay:246 - Packet 14169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.755 | ERROR    | decomp:get_tx_delay:246 - Packet 14052 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.757 | ERROR    | decomp:get_tx_delay:246 - Packet 14025 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.760 | ERROR    | decomp:get_tx_delay:246 - Packet 14020 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.762 | ERROR    | decomp:get_tx_delay:246 - Packet 14016 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.766 | ERROR    | decomp:get_tx_delay:246 - Packet 13763 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.768 | ERROR    | decomp:get_tx_delay:246 - Packet 13629 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.768 | ERROR    | decomp:get_tx_delay:246 - Packet 13618 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.770 | ERROR    | decomp:get_tx_delay:246 - Packet 13523 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.772 | ERROR    | decomp:get_tx_delay:246 - Packet 13444 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.773 | ERROR    | decomp:get_tx_delay:246 - Packet 13443 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.777 | ERROR    | decomp:get_tx_delay:246 - Packet 13404 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.778 | ERROR    | decomp:get_tx_delay:246 - Packet 13374 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.779 | ERROR    | decomp:get_tx_delay:246 - Packet 13368 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.780 | ERROR    | decomp:get_tx_delay:246 - Packet 13303 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.781 | ERROR    | decomp:get_tx_delay:246 - Packet 13288 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.785 | ERROR    | decomp:get_tx_delay:246 - Packet 13017 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.790 | ERROR    | decomp:get_tx_delay:246 - Packet 12735 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.795 | ERROR    | decomp:get_tx_delay:246 - Packet 12638 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.800 | ERROR    | decomp:get_tx_delay:246 - Packet 12628 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.811 | ERROR    | decomp:get_tx_delay:246 - Packet 12417 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.832 | ERROR    | decomp:get_tx_delay:246 - Packet 11709 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.843 | ERROR    | decomp:get_tx_delay:246 - Packet 11169 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.846 | ERROR    | decomp:get_tx_delay:246 - Packet 11131 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.851 | ERROR    | decomp:get_tx_delay:246 - Packet 10886 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.874 | ERROR    | decomp:get_tx_delay:246 - Packet 9904 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.889 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.893 | ERROR    | decomp:get_tx_delay:246 - Packet 9032 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.895 | ERROR    | decomp:get_tx_delay:246 - Packet 8893 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.913 | ERROR    | decomp:get_tx_delay:246 - Packet 7668 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.924 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.927 | ERROR    | decomp:get_tx_delay:246 - Packet 6734 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.932 | ERROR    | decomp:get_tx_delay:246 - Packet 6348 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.933 | ERROR    | decomp:get_tx_delay:246 - Packet 6288 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.941 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.943 | ERROR    | decomp:get_tx_delay:246 - Packet 5626 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.951 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.952 | ERROR    | decomp:get_tx_delay:246 - Packet 4825 phy.in_t or phy.in_t not present
2024-12-19 16:10:56.993 | ERROR    | decomp:get_tx_delay:246 - Packet 976 phy.in_t or phy.in_t not present
RNTIs in packets of s66: ['71b4']
2024-12-19 16:11:05.115 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.116 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.117 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.117 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.202 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.202 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.204 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.207 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.299 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.347 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.348 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.348 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.349 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.349 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.350 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.351 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.351 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.351 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.353 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.493 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.495 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.496 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.497 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.636 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.637 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.637 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.638 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.766 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.767 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.768 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.770 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.772 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.774 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.777 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.779 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.781 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.781 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.854 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.859 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.860 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.861 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.909 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:05.910 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.000 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.001 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.110 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.168 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.169 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.169 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.170 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.171 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.174 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.377 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.378 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.544 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.545 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.621 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.625 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.626 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.627 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.628 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.629 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.705 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.709 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.738 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.739 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.878 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:06.879 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.020 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.084 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.085 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.086 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.086 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.089 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.091 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.308 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.309 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.514 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.515 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.609 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.610 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.610 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.610 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.611 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.612 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.681 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:07.683 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.607 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.607 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.687 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.689 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.767 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.814 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.815 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.816 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.816 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.817 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.818 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.927 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:09.929 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.026 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.027 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.067 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.068 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.069 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.069 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.070 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.072 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.129 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.130 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.159 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.161 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.408 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.409 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.553 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.646 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.647 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.648 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.649 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.651 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.651 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.879 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:10.880 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.110 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.111 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.214 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.215 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.217 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.219 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.219 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.223 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.360 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.361 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.411 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.419 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:11:11.677 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.678 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:11:11.935 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:11.936 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.053 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.054 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.058 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.059 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.060 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.061 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.062 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.063 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:11:12.447 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.447 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:11:12.797 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.798 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:11:12.929 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.930 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.931 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.932 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.933 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.933 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.934 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:12.934 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:11:13.060 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:13.061 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:11:13.106 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:13.107 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
For packet(id=39197), tx_delay == None!
2024-12-19 16:11:13.479 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:13.480 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
For packet(id=33556), tx_delay == None!
2024-12-19 16:11:13.815 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:13.817 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.005 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.007 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.008 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.008 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.009 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.010 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.010 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.011 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
For packet(id=24537), tx_delay == None!
2024-12-19 16:11:14.430 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.431 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
For packet(id=15841), tx_delay == None!
2024-12-19 16:11:14.859 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:14.860 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
For packet(id=7385), tx_delay == None!
2024-12-19 16:11:15.033 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.034 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.035 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.036 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.038 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.041 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.041 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.042 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
For packet(id=3729), tx_delay == None!
2024-12-19 16:11:15.282 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.283 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
For packet(id=142), tx_delay == None!
2024-12-19 16:11:15.303 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.306 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.368 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.369 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.434 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.469 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.470 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.472 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.474 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.476 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.476 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.562 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.563 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.648 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.649 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.690 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.691 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.692 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.692 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.693 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.694 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.731 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:15.732 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:16.665 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:16.666 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:16.790 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:16.792 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:16.926 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.000 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.001 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.003 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.005 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.005 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.009 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.198 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.199 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.383 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.384 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.463 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.464 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.465 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.466 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.467 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.468 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.577 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.579 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.597 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.598 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.665 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.668 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.769 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.806 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.809 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.810 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.812 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.813 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.814 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.911 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:17.912 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.004 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.005 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.093 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.094 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.095 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.096 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.098 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.099 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.147 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.148 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.165 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.167 | ERROR    | decomp:get_tx_delay:246 - Packet 39197 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.243 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.244 | ERROR    | decomp:get_tx_delay:246 - Packet 33556 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.318 | ERROR    | decomp:get_tx_delay:246 - Packet 27737 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.357 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.358 | ERROR    | decomp:get_tx_delay:246 - Packet 24538 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.359 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.360 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.362 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.363 | ERROR    | decomp:get_tx_delay:246 - Packet 24537 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.506 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.507 | ERROR    | decomp:get_tx_delay:246 - Packet 15841 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.615 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.617 | ERROR    | decomp:get_tx_delay:246 - Packet 7385 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.663 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.664 | ERROR    | decomp:get_tx_delay:246 - Packet 3730 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.666 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.667 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.669 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.671 | ERROR    | decomp:get_tx_delay:246 - Packet 3729 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.745 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
2024-12-19 16:11:18.746 | ERROR    | decomp:get_tx_delay:246 - Packet 142 phy.in_t or phy.in_t not present
Export csv¶
In [70]:
Meas_s40_s6263_s66.dataFrame(
    [
        "tbss",
        "segments",
        "segmentation_delays_wo_scheduling_delay",
    ],  # attrbutes name of Meas.delays
    [
        "TBS",
        "SegmentsNum",
        "SegmentDelay(noSched)",
    ],  # labels to display (optional)
)
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            4              11.732101
1  116            1               2.104998
2   24            4              12.003183
3   24            3               9.509802
4   24            1               9.574890
./data/csv/
Dataframe saved to ./data/csv/s40_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            3               9.410858
1   24            3               9.418011
2   24            4              11.901855
3   24            4              11.814833
4   24            3               9.358883
Dataframe saved to ./data/csv/s62_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.531975
1   24            3               9.627819
2   24            1               9.535789
3   24            3               9.494066
4   24            2              11.957884
Dataframe saved to ./data/csv/s63_TBS_SegmentsNum_SegmentDelay(noSched).csv
   TBS  SegmentsNum  SegmentDelay(noSched)
0   24            1               9.522915
1   24            3               9.600878
2   24            2              12.004852
3   24            3               9.702682
4   24            1               9.557724
Dataframe saved to ./data/csv/s66_TBS_SegmentsNum_SegmentDelay(noSched).csv
In [71]:
Meas_s40_s6263_s66.plotCCDF(
    ["segmentation_delays_wo_scheduling_delay"],
    ["s40", "s62", "s63", "s66"],
)
No description has been provided for this image
In [72]:
Meas_s40_s6263_s66.plotCCDF(
    ["segments"],
    ["s40", "s62", "s63", "s66"],
)
No description has been provided for this image
In [73]:
for i in range(0,4):
    x = Meas_s40_s6263_s66.meas[i].delays.segments
    y = Meas_s40_s6263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    plt.scatter(x,y)
    plt.xlabel("Segments Number")
    plt.ylabel("segmentation_delay")
    plt.title(f"{Meas_s40_s6263_s66.meas[i].meas_label}")
No description has been provided for this image
In [74]:
for i in range(0, 4):
    x = Meas_s40_s6263_s66.meas[i].delays.tbss
    y = Meas_s40_s6263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    plt.scatter(x, y)
    plt.xlabel("TBS")
    plt.ylabel("segmentation_delay")
    plt.title(f"{Meas_s40_s6263_s66.meas[i].meas_label}")
No description has been provided for this image
In [75]:
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure(figsize=(7,7))
# 创建图形和 3D 子图
ax = fig.add_subplot(projection="3d")
# 设置边距
#c=["b","orange","g","r"]
for i in range(0, 4):
    x = Meas_s40_s6263_s66.meas[i].delays.segments
    y = Meas_s40_s6263_s66.meas[i].delays.tbss
    z = Meas_s40_s6263_s66.meas[i].delays.segmentation_delays_wo_scheduling_delay
    # 绘制 3D 散点图
    ax.scatter(x, y, z, marker="o", alpha=0.8)
    # 设置坐标轴标签
#ax.view_init(elev=20, azim=290)
ax.set_xlabel("Segments Number")
ax.set_xlim([0, 6.1])
ax.set_ylabel("TBS")
ax.set_ylim([0,1080])
ax.set_zlabel("Segmentation Delay")
ax.set_zlim([0, 100])
# 显示图形
# fig.tight_layout()
#plt.margins(2)
plt.show()
No description has been provided for this image